An implementation to priority queue based on linked heap(by golang)
introduction
The traditional ways to implement heap are to use arrays! As we all know, the length of array is fixed. Since that, the usage of heap has many limitaions and usually is inconvinient. This article uses the link-based implementation.
pri...
xue1.top4 min read