十六周 專案1 快速排序

2021-07-08 21:33:24 字數 850 閱讀 2812

/*

檔名稱:main.cpp

作者 :王超

完成日期:2023年12月14日

問題描述:快速排序,以中間位置元素為基準

*/#include #define maxsize 20

typedef int keytype; //定義關鍵字型別

typedef char infotype[10];

typedef struct //記錄型別

rectype; //排序的記錄型別定義

void quicksort1(rectype r,int s,int t) //對r[s]至r[t]的元素進行快速排序

}quicksort1(r,s,i-1); //對左區間遞迴排序

quicksort1(r,j+1,t); //對右區間遞迴排序

}}int main()

; for (i=0; i

r[i].key=a[i];

printf("排序前:");

for (i=0; i

printf("%d ",r[i].key);

printf("\n");

quicksort1(r,0,n-1);

printf("排序後:");

十六周專案1

輸入描述 無 輸出描述 實驗資料 標頭檔案 ifndef sort h included define sort h included define maxsize 50000 最多的資料,取5萬,只測試快速演算法,可以往大調整 下面的符號常量和結構體針對基數排序 define radix 10 基...

第十六周 專案1 驗證演算法 快速排序

檔名稱 1.cpp 作 者 楊俊傑 完成日期 2016年 12月15日 版 本 號 v1.0 問題描述 輸出描述 快速排序 1 以第乙個元素為基準 cpp view plain copy include define maxsize 20 typedef intkeytype 定義關鍵字型別 typ...

第十六周專案1 驗證快速排序法

問題及 煙台大學計控學院 作 者 郗傳秀 完成日期 2016年12月14日 問題描述 用序列作為測試資料,驗證快速排序 endif btree h included 1 以第1個元素作為基準 cpp view plain copy include define maxsize 20 typedef ...