Common Computer Science References
Big O Notation
At the end of this lesson, you will be able to:
understand and use recursion
binary search
Big O notation
having code that is "efficient" can be critically important
see this: https://www.youtube.com/watch?v=g2o22C3CRfUÂ
read "Functions", Chapter 3, Computer Based Problem Solving
read "Recursion"
not only the "Factorial" program but many other things can also be done recursively
one of them is the "Binary Search"
here is a Binary Search program starter
we know this is a "bad" function, since it is referring to a global array!
we will forgive ourselves today
do the above in a second language