📄 pairheap.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 + -