各位大大好,我寫了個小程式,依照選擇排序的概念寫的,想確認是否為選擇排序而不是冒泡排序法。
public static void main(String[] args) {
int[] n = { 3, 4, 6, 5, 2 };
for (int i = 0; i < n.length; i++) {
for (int j = i + 1; j < n.length; j++) {
if (n[i] > n[j]) {
int temp = n[i];
n[i] = n[j];
n[j] = temp;
}
}
}
for (int i = 0; i < n.length; i++) {
System.out.print(n[i] + " ");
}
}
確認你寫的不是選擇排序
選擇排序可以參考資料來源
public class SelectionSortExample {
public static void selectionSort(int[] arr){
for (int i = 0; i < arr.length - 1; i++)
{
int index = i;
for (int j = i + 1; j < arr.length; j++){
if (arr[j] < arr[index]){
index = j;//searching for lowest index
}
}
int smallerNumber = arr[index];
arr[index] = arr[i];
arr[i] = smallerNumber;
}
}
public static void main(String a[]){
int[] arr1 = {9,14,3,2,43,11,58,22};
System.out.println("Before Selection Sort");
for(int i:arr1){
System.out.print(i+" ");
}
System.out.println();
selectionSort(arr1);//sorting array using selection sort
System.out.println("After Selection Sort");
for(int i:arr1){
System.out.print(i+" ");
}
}
}
選我正解
(Selection Sort) 是「選擇當中最小的那一個」,再把它塞進新的變數
你的命題當中:「選擇當中最小的那一個」這個動作,你用的方法是 bubble
這....
你給的程式是氣泡排序法,關於選擇排序法我之前有寫過一篇文章,不過使用語言是 javascript,但是我想應該還是看得懂9成以上的程式碼,給你參考看看:
https://ithelp.ithome.com.tw/articles/10223748