HeapSort Takes some unsorted array of numbers and turns it into a array minheap. Then takes that minheap array and returns a sorted array
RPG text-based game Import a .txt file to construct a binary tree. User gets to play a "choose your own path" style game and select choices.
Palindrome A program that allows the user to enter any word and assess whether it is a palindrome. Not case sensitive (converts all characters to UPPER CASE prior to evaluation) Omits all spaces, numbers, and symbols
Prim_MST Utilize Prim's Algorithm to construct a tree using starting from any arbitrary node. Computes the lowest edges and determines the next node based on a min-heap priority queue.