Exercise XII
- Rank asymptotic complexities from smallest to largest.
Exercise Two alternative algorithms, and , have logarithmic and linear runtimes, respectively. Which statement is true?
A) 's runtime function grows faster thus is faster
B) 's runtime function grows slower thus is faster
C) 's runtime function grows faster thus is faster
D) 's runtime function grows slower thus is faster
Solution
You can imagine A is binary search and B is linear search. Based on the information we have, A runs faster. How do we know that? Because grows slower than , as gets larger and larger, which means it takes less time for to do its work. So the answer is (B).