void selection_sort(int array[], int n); {; for (int i=0; i<n; i++); {; // 從尚未排序的數字當中,找到第i小的數字。 int min_index = i;; for (int j=i+1; j<n; ...
確定! 回上一頁