- Notifications
You must be signed in to change notification settings - Fork0
左式堆(leftist heap)实现优先队列,原文地址:http://www.srcmini.com/1588.html
NotificationsYou must be signed in to change notification settings
onnple/leftistheap
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
左式堆(leftist heap)实现优先队列,原文地址:
extern LeftistHeap *lheap_init();
extern int lheap_is_full(LeftistHeap *heap);
extern int lheap_is_empty(LeftistHeap *heap);
extern int lheap_push(LeftistHeap *heap, int key, Label *label);
extern LNode *lheap_top(LeftistHeap *heap);
extern int lheap_pop(LeftistHeap *heap);
extern void lheap_traverse(LeftistHeap *heap);
extern int lheap_clear(LeftistHeap *heap);
About
左式堆(leftist heap)实现优先队列,原文地址:http://www.srcmini.com/1588.html
Topics
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published