My name is Mack Pearson-Muggli and this repo contains code for my Algorithms class at Columbia College.
Implementation and description of 6 different sorting algorithms in C#.
https://github.com/chopov1/AlgorithmsFA22/tree/main/SortingAlgorithms
The project FYshuffle demonstrates my understanding of the fisher yates shuffle. An algorithm used to shuffle values of an array by swapping indexes. It reads text data from the file "TextFile.txt" puts it into an array and shuffles it.
I created an application to demonstarte my knowledge of data structures. In the comments of the code I compare and contrast benefits of both and explain how a map for example might be better then an array in certain circumstances.
This is a simple program in c++ containing a few functions all with different run times.