第13周專案4 陣列的排序(3)

2021-06-27 05:25:10 字數 770 閱讀 1987

/*

*檔名稱:annpion.cpp

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

*版本號:v1.0

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

*輸入描述:不輸入。

*程式輸出:輸出陣列選擇性排序後的順序。

*/#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); //用選擇性法按降序排序a中元素

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

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

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

return 0;

}void bubble_sort(int a,int n)

}t=a[k];

a[k]=a[i];

a[i]=t;

}}void output_array(int a,int n)

{ int i;

for(i=0; i執行結果:

第13周專案4 陣列的排序(3 選擇排序)

檔名稱 123.cpp 完成日期 2014年11月23日 版本號 v1.0 問題描述 編寫程式,利用選擇排序法進行陣列的排序。輸入描述 略。程式輸出 輸出排序後的陣列。include using namespace std int select sort int arr,int n int outp...

第13周專案4 陣列的排序(2)

問題描述 2 字元陣列排序 改造 1 的程式,使其能對字元陣列進行排序,其中 int a 20 int b 15 改為char a 20 char b 15 自己補足 include include using namespace std void bubble sort char a,int vo...

第13周專案4 陣列的排序 (2)

檔名稱 c cpp 作 者 王一錕 完成日期 2014年11月22日 版 本 號 v1.0 問題描述 字元組排序 降序 輸入描述 輸出描述 排序後的字元組 include using namespace std void bubble sort char m,int num void output ...