码迷,mamicode.com
首页 > 编程语言 > 详细

螺旋打印2D数组

时间:2017-09-16 16:02:51      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:offer   sys   log   print   class   bsp   nbsp   ++   blog   

//一破题付出血的代价   多思考!
public
static void offer(int [][]a){ int left=0,right=a.length-1,low=0,high=a[0].length-1; while(low<=high){ for(int i=left;i<=right;i++){//123 System.out.print(a[left][i]+" "); } low++; for(int i=low;i<=high;i++){//69 System.out.print(a[i][right]+" "); } right--; for(int i=right;i>=left;i--){//87 System.out.print(a[high][i]+" "); } high--; for(int i=high;i>=low;i--){//45 System.out.print(a[i][left]+" "); } left++; } }

 

螺旋打印2D数组

标签:offer   sys   log   print   class   bsp   nbsp   ++   blog   

原文地址:http://www.cnblogs.com/KingIceMou/p/7531198.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!