第十三周專案 4 陣列的排序(選擇排序)

2021-06-27 04:34:39 字數 961 閱讀 2203

/*

* 檔名稱 :main.cpp

* 作 者 :韓娟

完成日期 :2023年11月22日

* 版 本 號 :v1.0

* * 問題描述 : 編寫函式,完成選擇排序

* 輸入描述 : 略

* 程式輸出 : 字母降序排序

*/#include #include using namespace std;

void select_sort(int y,int n);

void output_array(int y,int n);//兩個函式select_sort和output_array的宣告

int main( )

; int b[15]=;

select_sort(a,20); //用選擇法按降序排序a中元素

output_array(a,20); //輸出排序後的陣列

select_sort(b,15); //用選擇法按降序排序b中元素

output_array(b,15); //輸出排序後的陣列

return 0;

}//請在下面定義select_sort和output_array函式

知識點總結 :

這個程式用到了選擇排序,比氣泡排序的時間相對用的比較多,但是也是乙個新的方法要多多掌握。

學習心得 :

乙個問題有多種解決方法,要比較那種比較好用用時較短。

第十三周專案四 陣列的排序(選擇排序按降序排列)

問題及 include using namespace std void select sort int s,int num void output array int s,int num 兩個函式bubble sort和output array的宣告 int main int b 15 selec...

第十三周 專案四 陣列的排序(1 4選擇排序)

問題及 檔名稱 project4.cpp 作 者 李楠 完成日期 2014年11月21日 版 本 號 v1.0 問題描述 編寫程式,完成選擇排序 輸入描述 略 程式輸出 略 include using namespace std void select sort int p,int n void o...

第十三周專案4 陣列的排序(冒泡法)

輸入描述 程式輸出 降序排列陣列的數並輸出 include using namespace std void bubble sort int a,int n void output array int a,int n int main int b 15 bubble sort a,20 用冒泡法按降...