第13周專案 字母排序

2021-06-27 12:19:29 字數 757 閱讀 8173



/* *   檔名稱   :    textst  .    cpp

*    作者  :    孫旭明

*     完成日期    :    2023年12月8日

*     版本號    :     v1.0

*    問題描述    :    給字母排序

*     程式輸出    :       把字母按照一定順序排列

#include

#include

void bubble_sort(char a,int n);

void output_array(char a,int n);

using namespace std;

int main( )

;char 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函式

void bubble_sort(char a,int n)

return;

}void output_array(char a,int n)

{int i;

for(i=0; i



第13周專案1 (3)

檔名稱 test.cpp 版本 code blocks 問題描述 定義分數的一目運算 和 分別代表分數取正和求反,將 按位取反運算子 過載為分數的求倒數運算。輸入描述 程式輸出 include include using namespace std class cfraction void simp...

第13周專案4 (1)氣泡排序

編號及 版本號 v1.0 作者 范星月 完成日期 2014年11月23日 問題描述 用氣泡排序 問題輸入 輸入陣列 問題輸出 由大到小排序 include include using namespace std void bubble sort int arr,int num void output...

第15周專案1 (3)希爾排序

問題描述及 煙台大學計算機與控制工程學院 作 者 馬賽 完成日期 2016年12月8日 include define maxsize 20 typedef int keytype 定義關鍵字型別 typedef char infotype 10 typedef struct 記錄型別 rectype...