您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關使用Java怎么實現一個螺旋矩陣,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
給定一個包含 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]
class Solution { public List<Integer> spiralOrder(int[][] matrix) { List<Integer> result = new LinkedList<>(); if(matrix.length==0) return result; int upBound = 0; int rightBound = matrix[0].length-1; int leftBound = 0; int downBound = matrix.length-1; while(true){ for(int i=leftBound; i<=rightBound; ++i) result.add(matrix[upBound][i]); if(++upBound>downBound) break; for(int i=upBound; i<=downBound; ++i) result.add(matrix[i][rightBound]); if(--rightBound<leftBound) break; for(int i=rightBound; i>=leftBound; --i) result.add(matrix[downBound][i]); if(--downBound<upBound) break; for(int i=downBound; i>=upBound; --i) result.add(matrix[i][leftBound]); if(++leftBound>rightBound) break; } return result; } }
關于使用Java怎么實現一個螺旋矩陣就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。