File: priority_queue.go

package info (click to toggle)
golang-github-vbauerster-mpb 5.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 884 kB
  • sloc: makefile: 3
file content (32 lines) | stat: -rw-r--r-- 603 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package mpb

// A priorityQueue implements heap.Interface
type priorityQueue []*Bar

func (pq priorityQueue) Len() int { return len(pq) }

func (pq priorityQueue) Less(i, j int) bool {
	return pq[i].priority < pq[j].priority
}

func (pq priorityQueue) Swap(i, j int) {
	pq[i], pq[j] = pq[j], pq[i]
	pq[i].index = i
	pq[j].index = j
}

func (pq *priorityQueue) Push(x interface{}) {
	s := *pq
	bar := x.(*Bar)
	bar.index = len(s)
	s = append(s, bar)
	*pq = s
}

func (pq *priorityQueue) Pop() interface{} {
	s := *pq
	*pq = s[0 : len(s)-1]
	bar := s[len(s)-1]
	bar.index = -1 // for safety
	return bar
}