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

📄 pairheap.h

📁 数据结构与算法分析(C语言描述)的源代码 里面的代码的质量非常高
💻 H
字号:
        typedef int ElementType;        #ifndef _PairHeap_H        #define _PairHeap_H        struct PairNode;        typedef struct PairNode *PairHeap;        typedef struct PairNode *Position;        PairHeap Initialize( void );        void Destroy( PairHeap H );        PairHeap MakeEmpty( PairHeap H );        PairHeap Insert( ElementType Item, PairHeap H, Position *Loc );        PairHeap DeleteMin( ElementType *MinItem, PairHeap H );        ElementType FindMin( PairHeap H );        PairHeap DecreaseKey( Position P,                              ElementType NewVal, PairHeap H );        int IsEmpty( PairHeap H );        int IsFull( PairHeap H );        #endif

⌨️ 快捷键说明

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