java_冒泡排序
Posted 杨同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java_冒泡排序相关的知识,希望对你有一定的参考价值。
public static void main(String[] args){
int[] arr= {321, 43, 45, 76, 8, 6, 9, 1, 3, 63, 43};
for(int i=0;i<arr.length-1;i++){
for(int j=0;j<arr.length-1-i;j++){
int temp = arr[j];
if(arr[j]>arr[j+1]){
arr[j] = arr[j+1];
temp = arr[j];
arr[j+1] = temp;
}
}
}
for(int i=0;i<arr.length;i++){
System.out.print(arr[i]+" ");
}
}
以上是关于java_冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章