标签:ret 反序 ble pre length null for int 排序
冒泡排序是最简单的排序算法,它的平均时间复杂度为O(n2)。当数组正好是正序时即最好情况下,它的时间复杂度为O(n);当数组正好是反序时即最坏情况下是O(n2)。
1 public void bubbleSort(int[] arr) { 2 if (arr == null || arr.length == 0) 3 return ; 4 int temp = 0; 5 //从小到大排序 6 for (int i = 0; i < arr.length; i++) { 7 //从后到前比较 8 for (int j = arr.length - 1; j > i; j--){ 9 if (arr[i] > arr[j]) { 10 temp = arr[i]; 11 arr[i] = arr[j]; 12 arr[j] = temp; 13 } 14 } 15 } 16 }
标签:ret 反序 ble pre length null for int 排序
原文地址:http://www.cnblogs.com/timecloud/p/6108082.html