用線性時間算法創建二叉堆。

#define MinData (-32767) typedef int ElementType; struct HeapStruct; typedef struct HeapStruct *PriorityQueue; struct HeapStruct {     int Capacity;     int Size;     ElementType *Elements; }; Priorit
相關文章
相關標籤/搜索