Exercise XII

  • Rank asymptotic complexities from smallest to largest.

Exercise Two alternative algorithms, AA and BB, have logarithmic and linear runtimes, respectively. Which statement is true?

A) AA's runtime function grows faster thus AA is faster
B) AA's runtime function grows slower thus AA is faster
C) BB's runtime function grows faster thus BB is faster
D) BB's runtime function grows slower thus BB 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 lgn\lg n grows slower than nn, as nn gets larger and larger, which means it takes less time for AA to do its work. So the answer is (B).