日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

[算法][LeetCode]Spiral Matrix

發(fā)布時間:2024/4/13 编程问答 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 [算法][LeetCode]Spiral Matrix 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

題目要求

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].

分析

舉個例子自己從頭到尾把數(shù)字列出來,很容易就找到規(guī)律了: 假設(shè)一維數(shù)組的坐標(biāo)為x,取值范圍是xMin~xMax;二維數(shù)組的坐標(biāo)為y,取值范圍是yMin~yMax。(也就是數(shù)組表示為int[y][x]) 1. 從左到右,y=yMin,x: xMin->xMax,yMin++ 2. 從上到下,x=xMax,y: yMin->yMax,xMax--
3. 從右到左,y=yMax,x: xMax->xMin,yMax-- 4. 從下到上,x=xMin,y: yMax->uMin,xMin++ 結(jié)束條件,xMin==xMax或者yMin==yMax
還要要注意的地方:空數(shù)組的情況要處理。

Java代碼

public static ArrayList<Integer> spiralOrder(int[][] matrix) {ArrayList<Integer> order = new ArrayList<Integer>(); if (matrix.length == 0 || matrix[0].length == 0) return order;int xMin = 0;int yMin = 0;int xMax = matrix[0].length - 1;int yMax = matrix.length - 1;order.add(matrix[0][0]);int i = 0, j = 0;while (true) {while (i < xMax) order.add(matrix[j][++i]);if (++yMin > yMax) break;while (j < yMax) order.add(matrix[++j][i]);if (xMin > --xMax) break;while (i > xMin) order.add(matrix[j][--i]);if (yMin > --yMax) break;while (j > yMin) order.add(matrix[--j][i]);if (++xMin > xMax) break;}return order; }

?

總結(jié)

以上是生活随笔為你收集整理的[算法][LeetCode]Spiral Matrix的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。