Set of problem-solving functions written in C++
Corey Wooten
October 07, 2018
01_fibonacci // Writes a recursive function that returns the nth Fibonacci number
02_reversesort // Stores the generated list of N numbers and sort them by reverse lexical order
03_uniquechars // Implements an algorithm to determine if a string has all unique characters
04_linkedlist // Implements an algorithm to find the kth to last element of a singly linked list
05_stacksort // Writes a program to sort a stack such that the smallest items are on the top
06_directedgraph // Designs an algorithm to find a route between two nodes given a directed graph