Java实现螺旋矩阵的示例

网友投稿 286 2022-12-14


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 spiralOrder(int[][] matrix) {

http:// List();

if(matrix.length==0) return result;

int upBound = 0;

int rightBound = matrix[0].lengthiMsbHnqh-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

for(int i=rightBound; i>=leftBound; --i)

result.add(matrix[downBound][i]);

if(--downBound

for(int i=downBound; i>=upBound; --i)

result.add(matrix[i][leftBound]);

if(++leftBound>rightBound) break;

}

return result;

}

}

for(int i=rightBound; i>=leftBound; --i)

result.add(matrix[downBound][i]);

if(--downBound

for(int i=downBound; i>=upBound; --i)

result.add(matrix[i][leftBound]);

if(++leftBound>rightBound) break;

}

return result;

}

}

for(int i=downBound; i>=upBound; --i)

result.add(matrix[i][leftBound]);

if(++leftBound>rightBound) break;

}

return result;

}

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java实现复原IP地址的方法
下一篇:java web手写实现分页功能
相关文章

 发表评论

暂时没有评论,来抢沙发吧~