How do I find out the time complexity of the recurrence relation t(n)=t(n/5)+t(n/3)+t(2n/3)+n?
The question asks me to find out the time complexity of the recurrence relation t(n)=t(n/5)+t(n/3)+t(2n/3)+n.
The question asks me to find out the time complexity of the recurrence relation t(n)=t(n/5)+t(n/3)+t(2n/3)+n.