編號及**:
/**版本號:v1.0
*作者;范星月
*完成日期:2023年11月23日
**問題描述:用氣泡排序
*問題輸入;輸入陣列
*問題輸出:由大到小排序
*/#include #include using namespace std;
void bubble_sort (int arr,int num);
void output_array (int arr,int num);
int main( )
; int b[15]= ;
bubble_sort(a,20 ); //用冒泡法按降序排序a中元素
output_array(a,20);
bubble_sort (b,15);
output_array(b,15);
return 0;
}void bubble_sort (int arr,int num)
{ int i,t,j;
for (j=0; j
執行結果:
學習總結:學會了氣泡排序的演算法
學習心得:加油
第15周專案1(3) 驗證氣泡排序演算法
1.氣泡排序 include define maxsize 20 typedef int keytype 定義關鍵字型別 typedef char infotype 10 typedef struct 記錄型別 rectype 排序的記錄型別定義 void bubblesort rectype r,...
第14周專案1 3 驗證演算法 氣泡排序
檔名稱 cpp1.作 者 薛瑞琪 完成日期 2017 年 12 月 7 日 版 本 號 v1.0 問題描述 用序列作為測試資料,輸入描述 無需輸入 程式輸出 實現各種演算法的函式的測試結果 include define maxsize 20 typedef int keytype 定義關鍵字型別 t...
第13周專案1 (3)
檔名稱 test.cpp 版本 code blocks 問題描述 定義分數的一目運算 和 分別代表分數取正和求反,將 按位取反運算子 過載為分數的求倒數運算。輸入描述 程式輸出 include include using namespace std class cfraction void simp...