StatList: A Program that returns the mean of the student grades and can also return the mean with the highest and lowest grades removed. you can also obtain the number of grade letters the student got like: A's, B's, C's, D's, F's. Or only return the highest and lowest grade.
Lab07: A Program that Counts digits in different bases
Lab09: A Program that sorts char's in a string using Quicksort
PathSearch: In this program the Data Structure used to do so actual work is Queue(FIFO). The algorithm implemented with a queue is Breath First Search which will be used for seaching thru the maze. Using that approach, i check all the spots i'm 1 step away from. Then all the spots 2 steps away. Then Continuing to spot 3 and so on. I use this approach to guarantee that if i do find the end, there couldn't have been any shorther paths.