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

2021-06-27 04:18:46 字數 936 閱讀 6332

問題及**:

/*

* 檔名稱:project4.cpp

* 作 者:李楠

* 完成日期:2023年11月21日

* 版 本 號:v1.0

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

* 輸入描述: 略

* 程式輸出: 略

*/#include using namespace std;

void select_sort(int p,int n);

void output_array(int p,int n);

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;

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

void select_sort(int p,int n)

return;

}void output_array(int p,int n)

{ int i;

for(i=0;i

執行結果:

知識點總結:

選擇排序這一部分,在上課的時候沒有好好聽,也就沒有理解,看了課件才想起來原來老師講過,然後又根據過程想了一遍才明白。

學習心得:

上課聽講是很重要的,落下的東西要很長時間才能補回來!!

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

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

第十三周專案四 陣列的排序(2)

問題及 檔名稱 test.cpp 作 者 陳旭 完成日期 2014年 11 月 22 日 版 本 號 v1.0 問題描述 編寫函式,完成氣泡排序,使其能對字元陣列排序 輸入描述 略 程式輸出 略 include using namespace std void bubble sort char p,...

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

問題及 檔名稱 test.cpp 作 者 郝俊宇 完成日期 2014年 11 月 22 日 版 本 號 v1.0 問題描述 編寫函式,完成氣泡排序,要求不能改變下面的main函式。輸入描述 無 程式輸出 對應的數 include using namespace std void bubble sor...