Question: ( a ) Find the recurrence relation and solve it for the function given in 1 . int test ( int n ) 2 .

(a) Find the recurrence relation and solve it for the function given in
1. int test(int n)
2.{ if (n ==0)
3. return 1;
4. for (int i =1, i <= n; i++)
5. PRINT n;
6. return test(n/2)* test(2*n/5);
7.}
(b) Discuss the time complexity of the Kahn's algorithm for topological sorting?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!