is 87.000 a real number
yes
what algorithms can be used to solve tractable problems
Linear search
Merge sort
Binary search
Post-order tree-traversal
why does bubble sort have the same time complexity as O (n^2)
in each pass through the list n times will be examined
there will be at most n passes through the list
what is meant by a recursive sub routine
A subroutine that calls itself
base cases for the subroutine