当前位置: 首页> 科技> 数码 > 【LeetCode热题 100】螺旋矩阵

【LeetCode热题 100】螺旋矩阵

时间:2025/9/14 11:58:35来源:https://blog.csdn.net/q2qwert/article/details/139887534 浏览次数:0次

leetcode原地址:https://leetcode.cn/problems/spiral-matrix/description

描述

给你一个 m 行 n 列的矩阵 matrix ,请按照 顺时针螺旋顺序 ,返回矩阵中的所有元素。

示例 1:
在这里插入图片描述

输入:matrix = [[1,2,3],[4,5,6],[7,8,9]]
输出:[1,2,3,6,9,8,7,4,5]

示例 2:
在这里插入图片描述

输入:matrix = [[1,2,3,4],[5,6,7,8],[9,10,11,12]]
输出:[1,2,3,4,8,12,11,10,9,5,6,7]

提示:

m == matrix.length
n == matrix[i].length
1 <= m, n <= 10
-100 <= matrix[i][j] <= 100

题解

    public List<Integer> spiralOrder(int[][] matrix) {List<Integer> res = new ArrayList<>();if (matrix == null || matrix.length == 0 || matrix[0].length == 0) {return res;}int top  = 0;int left  = 0;int right  = matrix[0].length-1;int bottom  = matrix.length-1;int cur = 0;while (right>left && bottom >top){//从左往右for(int i =left;i<right;i++){res.add(matrix[top][i]);}//从上到下for(int i =top;i<bottom;i++){res.add(matrix[i][right]);}//从右往左for(int i =right;i>left;i--){res.add(matrix[bottom][i]);}//从下到上for(int i =bottom;i>top;i--){res.add(matrix[i][left]);}left++;bottom--;top++;right--;}if (top == bottom) {for (int i = left; i <= right; i++) {res.add(matrix[top][i]);}} else if (left == right) {for (int i = top; i <= bottom; i++) {res.add(matrix[i][left]);}}return res;}
关键字:【LeetCode热题 100】螺旋矩阵

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: