/*
* 檔名稱 :main.cpp
* 作 者 :韓娟
完成日期 :2023年11月21日
* 版 本 號 :v1.0
* * 問題描述 : 編寫函式,完成氣泡排序
* 輸入描述 : 略
* 程式輸出 : 陣列降序排序
*/#include #include using namespace std;
void bubble_sort(int y,int n);
void output_array(int y,int n);//兩個函式bubble_sort和output_array的宣告
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;
}//請在下面定義bubble_sort和output_array函式
知識點總結 :
這是乙個新的知識點,氣泡排序,對於氣泡排序主要要懂得交換兩個值的位置。
學習心得 :
新的知識點要多多練習才能更好掌握。
第十三周專案 4 陣列的排序(選擇排序)
檔名稱 main.cpp 作 者 韓娟 完成日期 2014年11月22日 版 本 號 v1.0 問題描述 編寫函式,完成選擇排序 輸入描述 略 程式輸出 字母降序排序 include include using namespace std void select sort int y,int n v...
第十三周專案4 陣列的排序(冒泡法)
輸入描述 程式輸出 降序排列陣列的數並輸出 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 用冒泡法按降...
第十三周 專案4 1 陣列的排序
span style font size 18px 04.檔名稱 06.完成日期 2014.11.07.版 本 號 v1.0 08.問題描述 陣列的排序 09.輸入描述 一組數 10.程式輸出 按照降序排列的數 11.12.include 13.14.using namespace std 15.v...