/*
*檔名稱:main.cpp
*完成日期:2023年12月15日
*版本號:vc++6.0
* *問題描述: 雜湊表及其運算的實現
*輸入描述:無
*程式輸出:
*/
main.c:
#include #define maxsize 20
typedef int keytype; //定義關鍵字型別
typedef char infotype[10];
typedef struct //記錄型別
rectype; //排序的記錄型別定義
//調整堆
void sift(rectype r,int low,int high)
}int main()
;//a[0]空閒,不作為關鍵字
for (i=1; i<=n; i++)
r[i].key=a[i];
printf("排序前:");
for (i=1; i<=n; i++)
printf("%d ",r[i].key);
printf("\n");
heapsort(r,n);
printf("排序後:");
for (i=1; i<=n; i++)
printf("%d ",r[i].key);
printf("\n");
return 0;
}
執行截圖:
第十六周專案1 (5)直接選擇排序(6)堆排序
問題及 檔名稱 ccc.cpp 作 者 陳夢雪 完成日期 2016年12月16日 版 本 號 v1.0 問題描述 用序列作為測試資料,驗證直接選擇排序 堆排序。輸入描述 無 程式輸出 測試資料 直接選擇排序 include define maxsize 20 typedef int keytype ...
第十六周專案6 氣泡排序
問題及 煙台大學計控學院 作 者 郗傳秀 完成日期 2016年12月14日 問題描述 用序列作測試資料,驗證氣泡排序 endif btree h included cpp view plain copy include define maxsize 20 typedef int keytype 定義...
第十六周專案1 (4)堆排序
問題及 檔名稱 專案1.cpp 作 者 董雪 完成日期 2016年12月14日 版 本 號 v1.0 問題描述 驗證堆排序,完成測試。輸入描述 無 程式輸出 測試資料 選擇排序之堆排序 include define maxsize 20 typedef int keytype 定義關鍵字型別 typ...