LeetCode 54. 螺旋矩阵

2020-05-05 16:04:05来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

LeetCode 54. 螺旋矩阵

我的LeetCode:https://leetcode-cn.com/u/ituring/

我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii

LeetCode 54. 螺旋矩阵

题目

给定一个包含?m x n?个元素的矩阵(m 行, n 列),请按照顺时针螺旋顺序,返回矩阵中的所有元素。

示例?1:

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

示例?2:

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/spiral-matrix
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

解题思路

思路1-控制横向和竖向的边界值,模拟螺旋遍历

算法复杂度:

  • 时间复杂度: $ {\color{Magenta}{\Omicron\left(n\right)}} $
  • 空间复杂度: $ {\color{Magenta}{\Omicron\left(1\right)}} $

算法源码示例

package leetcode;

import java.util.ArrayList;
import java.util.List;

/**
 * @author ZhouJie
 * @date 2020年2月20日 下午2:31:13 
 * @Description: 54. 螺旋矩阵
 *
 */
public class LeetCode_0054 {

}

class Solution_0054 {
	public List<Integer> spiralOrder(int[][] matrix) {
		List<Integer> list = new ArrayList<Integer>();
		if (matrix == null || matrix.length == 0) {
			return list;
		}
		int left, right, up, down, x, y;
		x = y = left = up = 0;
		right = matrix[0].length - 1;
		down = matrix.length - 1;
		y--;
		while (true) {
			if (left > right) {
				break;
			}
			while (++y <= right) {
				list.add(matrix[x][y]);
			}
			y--;
			up++;
			if (up > down) {
				break;
			}
			while (++x <= down) {
				list.add(matrix[x][y]);
			}
			x--;
			right--;
			if (left > right) {
				break;
			}
			while (--y >= left) {
				list.add(matrix[x][y]);
			}
			y++;
			down--;
			if (up > down) {
				break;
			}
			while (--x >= up) {
				list.add(matrix[x][y]);
			}
			x++;
			left++;
		}
		return list;
	}
}


原文链接:https://www.cnblogs.com/izhoujie/p/12832638.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Https双向验证与Springboot整合测试-人来人往我只认你

下一篇:git和tortoiseGit安装的那些事儿