鱼C论坛

 找回密码
 立即注册
查看: 1684|回复: 0

[学习笔记] leetcode 54. Spiral Matrix 谷歌面试题

[复制链接]
发表于 2019-8-18 03:29:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.

Example 1:

Input:
[
 [ 1, 2, 3 ],
 [ 4, 5, 6 ],
 [ 7, 8, 9 ]
]
Output: [1,2,3,6,9,8,7,4,5]
Example 2:

Input:
[
  [1, 2, 3, 4],
  [5, 6, 7, 8],
  [9,10,11,12]
]
Output: [1,2,3,4,8,12,11,10,9,5,6,7]

思路:两个pointer,一个横着走,一个竖着走,每次计算matrix 的最外围一周,然后进行递归。考虑特殊情况,一个是empty set,另一个是size one array。
class Solution {
        public static List<Integer> spiralOrder(int[][] matrix) {

        ArrayList<Integer> recept = new ArrayList<>();
            
        ArrayList<Integer> empty = new ArrayList<Integer>(){};
            
        if(matrix == null || matrix.length == 0){
            
            return empty;
        }
            
        if(matrix.length == 1){
            
            for(int i = 0; i<matrix[0].length; i++ ){
                
                recept.add(matrix[0][i]);
            }
            
            return recept;
        }

        generateList(matrix, recept, matrix[0].length, matrix.length, 0);

        return recept;
    }

    public static void generateList(int[][] matrix, ArrayList<Integer> array, int rowlen, int colen, int n) {
        
        if(matrix == null){

            return;
        }

        int len_of_column = colen - 2*n;

        int len_of_row = rowlen - 2*n;

        if(len_of_column <= 0 || len_of_row <= 0) {

            return;
        }

        int first = 0 + n, second = 0 + n;

        if(first == n) {

            while(first != n+ len_of_row && first>=n && first <= n+ len_of_row) {

                array.add(matrix[0+n][(first++)]);

//                System.out.println(array);
//                System.out.println("-----");
            }
        }

        second++;

        if(first == len_of_row+n && second == n+1) {

            while(second != len_of_column + n && second >=n && second <= len_of_column + n) {

                array.add(matrix[second++][first-1]);

//                System.out.println(array);
//                System.out.println("-----");
            }
        }

        first= first -2 ;

        if(first == len_of_row-2+n && second == len_of_column+n) {

            while(first != 0+n && first >=n && first <= len_of_row+n) {

                array.add(matrix[second-1][(first--)]);

//                System.out.println(array);
//                System.out.println("-----");
            }
        }

        second--;



        if(first == 0+n && second == len_of_column-1+n) {

            while(second != n && second >=n && second <=len_of_column+n) {

                array.add(matrix[(second--)][first]);
            }

        }

        n++;

        generateList(matrix, array, rowlen, colen, n);

    }
}

结果在running time 和 memory usage beat 100% online submissions!!!

17.jpg

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 04:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表