博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[leetcode] Spiral Matrix
阅读量:5936 次
发布时间:2019-06-19

本文共 1607 字,大约阅读时间需要 5 分钟。

hot3.png

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

For example,

Given the following matrix:

[ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8, 9 ]]

You should return[1,2,3,6,9,8,7,4,5].

思路:这题目不难理解,就是注意边界情况, 推荐用 上下左右4个bar的方法,简单不易出错。

import java.util.ArrayList;public class Solution {    public ArrayList
spiralOrder(int[][] matrix) { ArrayList
res = new ArrayList
(); if (matrix == null || matrix.length < 1 || matrix[0].length < 1) return res; int left = 0; int right = matrix[0].length - 1; int top = 0; int bottom = matrix.length - 1; while (left <= right && top <= bottom) { int i; for (i = left; i <= right; i++) res.add(matrix[top][i]); for (i = top + 1; i <= bottom; i++) res.add(matrix[i][right]); if (top < bottom)//corner case, no need back to left if top==bottom for (i = right - 1; i >= left; i--) res.add(matrix[bottom][i]); if (left < right)//corner case, no need back up if left==right for (i = bottom - 1; i >= top + 1; i--) res.add(matrix[i][left]); top++; bottom--; left++; right--; } return res; } public static void main(String[] args) { int[][] matrix = new int[][] { { 1,2 }, { 5,6 }, { 9,10 } }; System.out.println(new Solution().spiralOrder(matrix)); }}

转载于:https://my.oschina.net/jdflyfly/blog/284413

你可能感兴趣的文章
Puppet module命令参数介绍(六)
查看>>
VB中CHR()码值对应表
查看>>
LAMP基于不同主机和fcgi的通信方式
查看>>
2013美赛建模算法关键词
查看>>
Android-Parcelable理解与使用(对象序列化)
查看>>
数据结构----图(邻接表用法)
查看>>
批量扫描雏形之在Java中调用nmap进行主机探测
查看>>
php 二维数组按照value分组
查看>>
[Linux] 文件系统
查看>>
windows 7 防火墙无法开启!错误代码5 错误代码0x6D9 解决办法
查看>>
winhex脚本
查看>>
我的友情链接
查看>>
SVN命令详解
查看>>
Windows的资源监视器
查看>>
Android图形解锁的绘制
查看>>
UML基础系列:类图
查看>>
学习日志---树回归(回归树,模型树)
查看>>
Gene6_FTP_Server_高级配置
查看>>
centos 7编译安装nginx
查看>>
我的友情链接
查看>>