第十三周專案4 陣列的排列(選擇法)

2021-06-27 08:26:13 字數 630 閱讀 2221

/*

*檔名稱:test.cpp

*完成日期:2023年 11月 30日

*版本號:v1.0

**問題描述:用選擇法按降序排序陣列

*程式輸入:

*程式輸出:

#include using namespace std;

void select_sort(int a,int n);

void output_array(int a,int n);

int main( )

; int b[15]= ;

select_sort(a,20); //用選擇法按降序排序a中元素

output_array(a,20); //輸出排序後的陣列

第十三周專案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 陣列的排序(選擇排序)

檔名稱 main.cpp 作 者 韓娟 完成日期 2014年11月22日 版 本 號 v1.0 問題描述 編寫函式,完成選擇排序 輸入描述 略 程式輸出 字母降序排序 include include using namespace std void select sort int y,int n v...

陣列的排列選擇法

程式的版權和版本宣告部分 檔名稱 fibnacci.cpp 作 者 初瑞 完成日期 2013 年12 月 6 日 版本號 v1.0 輸入描述 無 問題描述 陣列的排列選擇法 程式輸出 程式輸出 問題分析 include using namespace std int main int b 15 bu...