structure/priority_queue/priority_queue.go

71 lines
1.2 KiB
Go
Raw Normal View History

2019-03-12 02:54:52 +00:00
package pqueue
import (
"474420502.top/eson/structure/compare"
)
2019-03-16 17:41:07 +00:00
2019-03-12 02:54:52 +00:00
type PriorityQueue struct {
queue *vbTree
head *tNode
}
func (pq *PriorityQueue) Iterator() *Iterator {
return nil
}
func New(Compare compare.Compare) *PriorityQueue {
return &PriorityQueue{queue: newVBT(Compare)}
}
func (pq *PriorityQueue) Size() int {
return pq.queue.Size()
}
func (pq *PriorityQueue) Push(value interface{}) {
n := pq.queue.Put(value)
if pq.head == nil {
pq.head = n
return
2019-03-28 18:44:24 +00:00
} else if pq.queue.Compare(n.value, pq.head.value) == 1 {
pq.head = n
}
}
func (pq *PriorityQueue) Top() (result interface{}, ok bool) {
if pq.head != nil {
return pq.head.value, true
}
return nil, false
}
func (pq *PriorityQueue) Pop() (result interface{}, ok bool) {
2019-03-28 18:44:24 +00:00
if pq.head != nil {
prev := getPrev(pq.head, 1)
result = pq.head.value
pq.queue.removeNode(pq.head)
if prev != nil {
pq.head = prev
} else {
pq.head = nil
}
return result, true
}
return nil, false
}
func (pq *PriorityQueue) Get(idx int) (interface{}, bool) {
return nil, false
}
func (pq *PriorityQueue) RemoveWithIndex(idx int) {
}
func (pq *PriorityQueue) Remove(key interface{}) {
}
func (pq *PriorityQueue) Values() []interface{} {
return nil
2019-03-12 02:54:52 +00:00
}