- 相關(guān)推薦
冒泡排序算法原理及JAVA實(shí)現(xiàn)代碼方法
冒泡排序算法原理及JAVA實(shí)現(xiàn)代碼方法
冒泡排序法:關(guān)鍵字較小的`記錄好比氣泡逐趟上浮,關(guān)鍵字較大的記錄好比石塊下沉,每趟有一塊最大的石塊沉底。
算法本質(zhì):(最大值是關(guān)鍵點(diǎn),肯定放到最后了,如此循環(huán))每次都從第一位向后滾動比較,使最大值沉底,最小值上升一次,最后一位向前推進(jìn)(即最后一位剛確定的最大值不再參加比較,比較次數(shù)減1)
復(fù)雜度: 時間復(fù)雜度 O(n2) ,空間復(fù)雜度O(1)
JAVA源代碼(成功運(yùn)行,需要Date類)
復(fù)制代碼 代碼如下:
public static void bubbleSort(Date[] days) {
int len = days.length;
Date temp;
for (int i = len - 1; i >= 1; i--) {
for (int j = 0; j < i; j++) {
if (days[j].compare(days[j + 1]) > 0) {
temp = days[j + 1];
days[j + 1] = days[j];
days[j] = temp;
}
}
}
}
class Date {
int year, month, day;
Date(int y, int m, int d) {
year = y;
month = m;
day = d;
}
public int compare(Date date) {
return year > date.year ? 1 : year < date.year ? -1
: month > date.month ? 1 : month < date.month ? -1
: day > date.day ? 1 : day < date.day ? -1 : 0;
}
public void print() {
System.out.println(year + " " + month + " " + day);
}
}
【冒泡排序算法原理及JAVA實(shí)現(xiàn)代碼方法】相關(guān)文章:
C語言的冒泡排序方法08-22
java的常見排序方法08-31
C語言選擇排序算法及實(shí)例代碼07-25
C語言插入排序算法及實(shí)例代碼07-02
教你JAVA語言快速排序的原理10-04
java構(gòu)造函數(shù)實(shí)現(xiàn)代碼示例08-23
java通用組合算法如何實(shí)現(xiàn)09-12
C#實(shí)現(xiàn)協(xié)同過濾算法的實(shí)例代碼06-19
Java常用的五大排序算法09-09