冒泡排序

public void bubbleSort(int[] a) {
		for(int i=0; ia[j+1]) {
					int tmp = a[j+1];
					a[j+1] = a[j];
					a[j]=tmp;
					stop = false;
				}
				//System.out.println(Arrays.toString(a));
			}
			if(stop) {
				break;
			}
		}
        System.out.println(Arrays.toString(a));
	}

 

你可能感兴趣的:(算法)