問題及**:
/*
*all right reserved
*檔名;seventyfive.cpp
*作者;童宇
*完成日期2023年11月23日
*版本號v1.0
*問題描述:氣泡排序
*輸入描述:
*程式輸出:
*/#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,b;
for(j=0; j
執行結果:
第十三周專案四 氣泡排序
問題及 檔名稱 test.cpp 作 者 劉佳琦 完成日期 2014年 11 月 23 日 版 本 號 v1.0 問題描述 編寫程式,完成氣泡排序 輸入描述 無 程式輸出 氣泡排序後的逆序輸出 include using namespace std void bubble sort int arr,...
第十三周專案4 (1)氣泡排序
問題及 檔名稱 test.cpp 完成日期 2014年 11 月 24 日 版本號 v1.0 問題描述 氣泡排序問題 程式輸出 有序輸出 includeusing namespace std void bubble sort int sor,int num void output array int...
第十三周專案四 陣列排列(2)字元陣列排列
執行及 dood luck 檔名稱 d.cpp 作 者 張旺華 完成日期 2014年11月23日 版 本 號 v1.0 問題描述 用冒泡的方法見字母排序 程式輸入 無 程式輸出 整理好的字母序列 include using namespace std void bubble sort char s,...