structure/priority_queue/priority_queue.go

8 lines
106 B
Go
Raw Normal View History

2019-03-12 02:54:52 +00:00
package pqueue
2019-03-16 17:41:07 +00:00
import "474420502.top/eson/structure/avl"
2019-03-12 02:54:52 +00:00
type PriorityQueue struct {
2019-03-16 17:41:07 +00:00
datas *avl.Tree
2019-03-12 02:54:52 +00:00
}