*all rights reservrd.
*版本號:v1.0
*問題輸入:無
*問題輸出:見截圖
#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;
}知識點總結:
堆排序是比較理想的演算法,它的最好,最壞和平均時間複雜度都是o(nlog2n)。
學習心得:
堆排序很重要,應該好好掌握。
第十五周專案一 (6)基數排序
檔名稱 a 作 者 張翠平 完成日期 2017 年 12 月 10 日 版 本 號 v1.0 問題描述 基數排序演算法的驗證 輸入描述 程式輸出 排序後的結果 main.cpp include include include define maxe 20 線性表中最多元素個數 define maxr...
第十五周內部排序(2)專案1 (6)堆排序
問題及 檔名稱 xxy.作 者 徐瀟雨 完成日期 2017 年 12 月 14 日 版 本 號 v1.0 問題描述 用選擇排序中的堆排序實現對不規則一列數字的排序 輸入描述 無 程式輸出 堆排序後的結果 include define maxsize 20 typedef int keytype 定義...
第十五周專案1 驗證演算法 堆排序
檔名稱 專案1 堆排序 作 者 董麗娟 完成日期 2017年12月7日 版 本 號 v1.0 堆排序 include define maxsize 20 typedef int keytype 定義關鍵字型別 typedef char infotype 10 typedef struct 記錄型別 ...