大頂堆的實現報告

1 .大頂堆的數據結構 //最大堆的數據結構 typedef struct MaxHeap{ int *Element; //實際存儲元素 int size; //已使用大小 int cap; //容量 }MaxHeap,*Heap_idx; 2.相關函數說明 創建堆函數:void Creat_Heap(Heap_idx &h); 壓入一個數據x函數:int Push(Heap_idx h,int
相關文章
相關標籤/搜索