Data-Structures
Priority Queue in Go - Part 2 of n
This is Part 2 in an n
part series on building a priority queue in Go. In
this part I will explore how to pull items from the queue.
Priority Queue in Go - Part 1 of n
On my road to learning Go, I am implementing various data structures. One I have never implemented is a Priority Queue, so I thought I would give it a try. Here is the first installment: Adding items to the queue and getting in them in the correct order in the backing array.