java冒泡排序(从小到大)
1 public class Sort{ 2 public static void main(String[] args){ 3 int a[] = {6,37,26,12,58,10,22,43}; 4 for(int i=0;i<a.length-1;i++){ 5 for(int j=0;j<a.length-i-1;j++){ 6 if(a[j]>a[j+1]){ 7 int temp = a[j]; 8 a[j]= a[j+1]; 9 a[j+1] = temp; 10 } 11 } 12 } 13 for(int r=0;r<a.length;r++){ 14 System.out.print(a[r]+"\t"); 15 } 16 } 17 }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。