in Algorithms retagged by
682 views
0 votes
0 votes
What is the time complexity of T(n) = T(n/3) + T(n/9) +n?
in Algorithms retagged by
682 views

3 Comments

O(n^2) ???
0
0

@kumar.dilip

Given Answer is O(n)

0
0
reshown by

@kumar.dilip can u pls tell how did u get this ?

0
0

2 Answers

2 votes
2 votes

T(n)= O(n)

0 votes
0 votes
We can solve it by tree method.

T(n) = T(n/3) + T(n/9) + n

                                                                n     =======> n

                                                        /               \

                                                  n/3                n/9   =======> 4/9n

                                        /                  \        /            \                             

                                 n/9                  n/27    n/27         n/81   ====> $(4/9)^{2}*n$

 

                             .................................................................

                            T(1)   ....................................................T(1)

Total work done will be = n + (4/9)n + $(4/9)^{2}*n $ + .........................k (times)

Here  n = $(4/9)^{k}$

We can write it like  n* [ 1 + 4/9 + 4/9^2 +------------------------]
So, it will be.
= 9/5 *n

= O(n)
edited by

2 Comments

@kumar.dilip 

n*(1-n)*9/5=O(n^2)

0
0

@kumar.dilip 

 n* [ 1 + 4/9 + 4/9^2 +--------------------------k]

after n everything is constant so, can we write O(n) directly by ignoring constant ..

0
0