問題描述:
(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 );
void output_array(char a, int );
int main( )
; char 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(char a, int n)
{ int i,j,t;
for(j=0; j
執行結果:
第13周專案4 陣列的排序 (2)
檔名稱 c cpp 作 者 王一錕 完成日期 2014年11月22日 版 本 號 v1.0 問題描述 字元組排序 降序 輸入描述 輸出描述 排序後的字元組 include using namespace std void bubble sort char m,int num void output ...
第13周專案4 陣列的排序(2)
問題及 檔名稱 made57.cpp 作 者 孫化龍 完成日期 2014年11月22日 版 本 號 v1.0 問題描述 編寫函式,完成氣泡排序,要求不能改變下面的main函式 輸入描述 無 輸出描述 排序後的陣列 include using namespace std 兩個函式bubble sort...
第13周專案4 陣列的排序(1)
檔名稱 annpion.cpp 完成日期 2014年11月23日 版本號 v1.0 問題描述 編寫函式,完成氣泡排序。輸入描述 不輸入。程式輸出 輸出陣列氣泡排序後的順序。include using namespace std void bubble sort int a,int n void ou...