自己练习冒泡算法
- class Maopao
- {
- public static void main(String[] args)
- {
- int[] a={21,2,-3,54,23,65};
- for(int i=0;i<a.length-1;i++)
- {
- for(int j=i;j<a.length-1;j++)
- {
- if(a[i]>a[j])
- {
- int temp = a[i];
- a[i]=a[j];
- a[j]=temp;
- }
-
- }
- }
- for(int b:a)
- System.out.println(b);
- }
- }
复制代码
|
|