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

歡迎訪問 生活随笔!

生活随笔

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

编程问答

螺旋数组的输出

發(fā)布時(shí)間:2024/1/23 编程问答 22 豆豆
生活随笔 收集整理的這篇文章主要介紹了 螺旋数组的输出 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
import java.util.ArrayList;

/**
?* @author wickedvalley
?*編程:
螺旋數(shù)組的數(shù)據(jù)
1 ? ?2 ? ?3 ?4 ? 5
6 ? ?7 ? ?8 ?9 ?10
11 12 13 14 15
16 17 18 19 20
21 22 23 24 25
?*/
public class PrintMatrix {


public static void main(String[] args) {
int [][]matrix={{1,2,3,4,5},{6,7,8,9,10},{11,12,13,14,15},{16,17,18,19,20},{21,22,23,24,25}};
System.out.println(printMatrix(matrix));
}
public static ArrayList<Integer> printMatrix(int [][] matrix){
ArrayList<Integer> list = ?new ArrayList<>();
int x=0;
int y=0;
int count=0;
int flag=matrix.length;
int len=(matrix.length)*(matrix.length);
int flagY=0;
//控制輸出的總數(shù)
while(count!=len){
if(count==len){
return list;
}
//right
while(y<flag){
if(count==len){
return list;
}
list.add(matrix[x][y]);
count++;
y++;
}
y--;
x++;
//down
while(x<flag){
if(count==len){
return list;
}
list.add(matrix[x][y]);
x++;
count++;
}
x--;
y--;
//left
while(y>flagY){
if(count==len){
return list;
}
list.add(matrix[x][y]);
count++;
y--;
}
//up
while(x>flagY){
if(count==len){
return list;
}
list.add(matrix[x][y]);
count++;
x--;
}
//由于up后x上移了,需要再減一
x++;
//新的一行需要右移一
y++;
//行長度控制減1
flag--;
//列控制加1
flagY++;
}
return list;

}


}

輸出結(jié)果:[1, 2, 3, 4, 5, 10, 15, 20, 25, 24, 23, 22, 21, 16, 11, 6, 7, 8, 9, 14, 19, 18, 17, 12, 13]



總結(jié)

以上是生活随笔為你收集整理的螺旋数组的输出的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

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