Skip to content

Instantly share code, notes, and snippets.

// This is the .cpp file for the binomial heap implementation of a
// Priority Queue, demonstrates some pointer work. All code on this
// page is mine.
// http://www.stanford.edu/class/cs106x/handouts/26-Assignment-4-PQueue.pdf
#include "pqueue-binomial-heap.h"
BinomialHeapPQueue::BinomialHeapPQueue()
{
logSize = 0;