Skip to content

Instantly share code, notes, and snippets.

View betteridiot's full-sized avatar

Marcus D Sherman betteridiot

  • Portland, Maine
View GitHub Profile
#include <iostream>
#include "PriorityQueue.h"
int main() {
PriorityQueue s;
std::cout << "Test 1: Empty queue\n";
s.printQueue(); // Should print: No elements in the queue
std::cout << "\nTest 2: Enqueue and print\n";