摘要: typedef struct HeapStruct *MaxHeap; struct HeapStruct{ int *Elements;/* 存储堆元素的数组 */ int Size;/* 堆的当前元素个数 */ int Capacity;/* 堆的最大容量 */ }; MaxHeap Creat 阅读全文
posted @ 2020-02-18 17:26 acwarming 阅读(172) 评论(0) 推荐(1) 编辑