I have this recurrence:
T(n)= 2T(n/2) + (n-1)
My try is as follow:
the tree is like this:
T(n) = 2T(n/2) + (n-1)
T(n/2) = 2T(n/4) + ((n/2)-1)
T(n/4) = 2T(n/8) + ((n/4)-1)
...
- the hight of the tree : (n/(2^h))-1 = 1 ==> h = lg n - 1 = lg n - lg 2
- the cost of the last level : 2^h = 2^(lg n - lg 2 ) = (1/2) n
- the cost of all levels until level h-1 : sigma from 0 to lg 2n - 1 of ( n - (2^i-1) ), which is a geometric series and = (1/2)((1/2)n-1)
So, T(n) = Theta(n lg n)
my question is: Is that right?
