Assignment 8
Next you will be implementing common algorithms using recursion.
Recursion is when a function calls itself. Any algorithm can be implemented recursively or iteratively. Some are easier to implement one way, some another.
Your functions should return a value to the user as appropriate and call no other functions other than themselves.
Write a function that sorts an array. (Mergesort and Quicksort are good examples)
Write a function that finds the max value in an array.
Write a function that prints out every element in an array
Write a function that returns the Greatest Common Divisor of two numbers
Write a function that reverses a string
Write a function that constructs a binary search tree of 20 random numbers. Then write a recursive function that searches that tree for a specific number.