/*
* 檔名稱:test.cpp
* 作 者:劉佳琦
* 完成日期:2023年 12 月 11日
* 版 本 號:v1.0
* * 問題描述:選擇法陣列排序
* 輸入描述:無
* 程式輸出:排序後的陣列
*/#include using namespace std;
void sort(int *p, int num); //不要對自定義函式的宣告有任何改動
void output(int*, int); //形式引數的名稱可以不要
int main( ) //不要對main函式有任何改動
; int b[15]=;
sort(a,20); //用選擇法按降序排序a中元素
output(a,20); //輸出排序後的陣列
sort(b,15); //用選擇法按降序排序b中元素
output(b,15); //輸出排序後的陣列
return 0;
}//下面定義自定義函式
void sort(int*p,int num)}}
void output(int*p, int n)
{ for(int i=0;i
執行結果:
學習心得:又再次複習了排序。
第十六周 專案一 陣列的排序
檔名稱 陣列的排列 完成日期 2014.12.11 版 本 號 v1.0 問題描述 用冒泡法按降序排序一陣列中元素 include using namespace std void sort int p,int num 不要對自定義函式的宣告有任何改動 void output int int 形式引...
第十六周 直接選擇排序
作 者 孫子策 完成日期 2016.12.15 問題描述 用序列作為測試資料,驗證直接選擇排序 include define maxsize 20 typedef int keytype 定義關鍵字型別 typedef char infotype 10 typedef struct 記錄型別 rec...
第十六周 專案1 (5)直接選擇排序
問題描述及 ifndef btree h included define btree h included 煙台大學計控學院 作 者 張雯婧 完成日期 2016年12月9日 問題描述 用序列作為測試資料,驗證直接選擇排序 endif btree h included include define m...