⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 binheap.h

📁 清华大学出版的数据结构(C语言版)中书中所提到的所有C源程序的实现。
💻 H
字号:
        typedef int ElementType;/* START: fig6_4.txt */        #ifndef _BinHeap_H        #define _BinHeap_H        struct HeapStruct;        typedef struct HeapStruct *PriorityQueue;        PriorityQueue Initialize( int MaxElements );        void Destroy( PriorityQueue H );        void MakeEmpty( PriorityQueue H );        void Insert( ElementType X, PriorityQueue H );        ElementType DeleteMin( PriorityQueue H );        ElementType FindMin( PriorityQueue H );        int IsEmpty( PriorityQueue H );        int IsFull( PriorityQueue H );        #endif/* END */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -