T(n) = 2T(n/2) + 0(1)
T(n) = T(sqrt(n)) + 0(1)
first one I use substitution method for n, logn, etc, all gave me wrong answers. Recurrence trees: I dont know if I can apply as the root will be a constant
Can some one help? T
first one I use substitution method for n, logn, etc, all gave me wrong answers. Recurrence trees: I dont know if I can apply as the root will be a constant Can some one help? T
| ||||
|
feedback
|
|
Let's look at the first one. First of all, you need to know T(base case). You mentioned that it's a constant, but when you do the problem it's important that you write it down. Usually it's something like T(1) = 1. I'll use that, but you can generalize to whatever it is. Next, find out how many times you recur (that is, the height of the recursion tree). Next, do a few substitutions, until you start to notice a pattern.
Ok, the pattern is that we multiply T() by 2 a bunch of times, and divide n by 2 a bunch of times. How many times?
For the big-θ terms at the end, we use a cute trick. Look above where we have a few substitutions, and ignore the T() part. We want the sum of the θ terms. Notice that they add up to Anyway, all in all we get
If you solved for
Prasoon Saurav is right about using the master method, but it's important that you know what the recurrence relation is saying. The things to ask are, how much work do I do at each step, and what is the number of steps for an input of size | ||||
|
feedback
|
|
Use
1) In this case a = b = 2; So Case (3) is applicable. So 2) Let m = log2 n; => T(2m) = T( 2m / 2 ) + Now renaming K(m) = T(2m) => K(m) = K(m/2) + Apply Case (2). | |||||||||||||||
feedback
|
|
For part 1, you can use Master Theorem as @Prasoon Saurav suggested. For part 2, just expand the recurrence:
The series will continue to | |||
|
feedback
|
|
Let's look at the first recurrence, T(n) = 2T(n/2) + 1. The n/2 is our clue here: each nested term's parameter is half that of its parent. Therefore, if we start with n = 2^k then we will have k terms in our expansion, each adding 1 to the total, before we hit our base case, T(0). Hence, assuming T(0) = 1, we can say T(2^k) = k + 1. Now, since n = 2^k we must have k = log_2(n). Therefore T(n) = log_2(n) + 1. We can apply the same trick to your second recurrence, T(n) = T(n^0.5) + 1. If we start with n = 2^2^k we will have k terms in our expansion, each adding 1 to the total. Assuming T(0) = 1, we must have T(2^2^k) = k + 1. Since n = 2^2^k we must have k = log_2(log_2(n)), hence T(n) = log_2(log_2(n)) + 1. | |||
|
feedback
|
|
Recurrence relations and recursive functions as well should be solved by starting at f(1). In case 1, T(1) = 1; T(2) = 3; T(4) = 7; T(8) = 15; It's clear that T(n) = 2 * n -1, which in O notation is O(n). | |||
|
feedback
|