學習筆記第二節 氣泡排序 選擇排序 插入排序

2021-06-28 21:14:19 字數 992 閱讀 8264

1:氣泡排序:

package ch02;

/** * 氣泡排序

* @author xxg

* */

public class bubblesort

}} }

}

2: 選擇排序:

package ch02;

/** * 選擇排序,比氣泡排序效率高

* @author xxg

* */

public class selectionsort

}// 交換位置

tmp = arr[i];

arr[i] = arr[k];

arr[k] = tmp;

} }}

3: 插入排序

package ch02;

/** * 插入排序

* @author xxg

* */

public class insertsort

arr[j] = tmp; // arr[0] = tmp

} }}

測試排序演算法:

package ch02;

public class testsort

system.out.print("]");

system.out.println();

// 測試三種排序演算法

// bubblesort.sort(arr);

// insertsort.sort(arr);

selectionsort.sort(arr);

system.out.print("[");

for(long num : arr)

system.out.print("]");

system.out.println();

}}

linux c 學習筆記第二節

int int a 32位 21個億 21個億 0 42個億 具有一定的資料範圍 signed unsigned short int a 16位 0 65535 32768 32767 long int a double float 首選double,精度高 整數型別文字 十進位制十六進製制 無正負...

Itween筆記 第二節

itween的camerafade相關api使用.1.camerafadeadd 建立乙個新的物件,新增乙個guitexture元件,並且給guitexture 的 texture 和 color 屬性賦預設的值.camerafadeadd texture2d texture 建立乙個新的物件,新增...

第二節課筆記

1.識別符號 宣告格式 型別 識別符號 賦值格式 識別符號 字面量 兩種格式的簡寫 型別 識別符號 字面量 2.操作符和表示式 表示式 通過識別符號,字面量和操作符按照一定的順序拼接然後得到的乙個具有固定結果的式子,叫做表示式 操作符 具有一定邏輯意義的符號。操作符型別 算數運算子 位運算子 關係運...