問題及**:
/*
*all right reserved
*檔名;seventyfive.cpp
*作者;童宇
*完成日期2023年11月23日
*版本號v1.0
*問題描述:氣泡排序
*輸入描述:
*程式輸出:
*/#include using namespace std;
void bubble_sort(int a,int);
void output_array(int a,int);
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)
{ int i,j,b;
for(j=0; j執行結果:
第十三周專案四陣列的排序(1)
問題及 檔名稱 test.cpp 作 者 郝俊宇 完成日期 2014年 11 月 22 日 版 本 號 v1.0 問題描述 編寫函式,完成氣泡排序,要求不能改變下面的main函式。輸入描述 無 程式輸出 對應的數 include using namespace std void bubble sor...
第十三周專案四 氣泡排序
問題及 檔名稱 test.cpp 作 者 劉佳琦 完成日期 2014年 11 月 23 日 版 本 號 v1.0 問題描述 編寫程式,完成氣泡排序 輸入描述 無 程式輸出 氣泡排序後的逆序輸出 include using namespace std void bubble sort int arr,...
第十三周專案1 驗證演算法(1)
all rights reservrd.檔名稱 test.cpp 版本號 v1.0 問題描述 驗證演算法 問題及 折半查詢 include define maxl 100 typedef int keytype typedef char infotype 10 typedef struct node...