Problem Set 2
Suppose the running time of an algorithm is governed by the recurrence
. What’s the overall asymptotic running time (i.e., the value of )?
ANSWER: Applying the Master Method,
Suppose the running time of an algorithm is governed by the recurrence
. What’s the overall asymptotic running time (i.e., the value of )?
ANSWER: Applying the Master Method,
Suppose the running time of an algorithm is governed by the recurrence
. What’s the overall asymptotic running time (i.e., the value of )?
ANSWER: Applying the Master Method,
Consider the following pseudocode for calculating
(where and are positive integers) FastPower(a,b) : if b = 1 return a else c := a*a ans := FastPower(c,[b/2]) if b is odd return a*ans else return ans end
Here
denotes the floor function, that is, the largest integer less than or equal to . Now assuming that you use a calculator that supports multiplication and division (i.e., you can do multiplications and divisions in constant time), what would be the overall asymptotic running time of the above algorithm (as a function of
)?
ANSWER: Outside of recursion, we do constant work; each time, the input size is halved, therefore,
Choose the smallest correct upper bound on the solution to the following recurrence:
and for . (Note that the Master Method does not apply.)
ANSWER: Substitute
Leave a comment