首页 > 代码库 > 数组基础练习
数组基础练习
public class testDemo { public static void main(String[] args) { // TODO Auto-generated method stub int data[][] = new int[][]{{1,2,3,4},{5,6,7,8},{9,3,6,1},{8,2,2,8}}; for(int row=0;row<4;row++){ for(int col=0;col<4;col++){ System.out.print(data[row][col]+","); } System.out.println(); } System.out.println(); transpose(data); for(int i=0;i<4;i++){ for(int j=0;j<4;j++){ System.out.print(data[i][j]+","); } System.out.println(); } } //二维数组行列转置 public static int[][] transpose(int[][] temp){ int exchange=0; for(int x=0;x<temp.length;x++){ for(int y=x;y<temp[x].length;y++){ exchange=temp[x][y]; temp[x][y]=temp[y][x]; temp[y][x]=exchange; } } return temp; } //查找数组中的数字 public static boolean search(int[] temp,int num){ for(int i=0;i<temp.length;i++){ if(temp[i]==num){ return true; } } return false; } //排序 public static int[] sort(int[] temp){ int x=0; for(int n=0;n<temp.length;n++){ for(int i=0;i<temp.length-1;i++){ if(temp[i]>temp[i+1]){ x=temp[i]; temp[i]=temp[i+1]; temp[i+1]=x; } } } return temp; } //一维数组反转 public static int[] convert(int[] temp){ int exchange=0; if(temp.length%2==0){ for(int i=0;i<temp.length/2;i++){ exchange=temp[i]; temp[i]=temp[temp.length-i-1]; temp[temp.length-i-1]=exchange; } }else{ for(int j=0;j<Math.round(temp.length/2);j++){ exchange=temp[j]; temp[j]=temp[temp.length-j-1]; temp[temp.length-j-1]=exchange; } } return temp; } }
数组基础练习
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。