go利用最小堆實現優先隊列

實現代碼 package core import "container/heap" type Item struct { Value interface{} Index int Priority int } type PriorityQueue []*Item func NewPriorityQueue(cap int) PriorityQueue {
相關文章
相關標籤/搜索