...
Algorithms
November 14, 2023
Algorithms
November 14, 2023
Algorithms
November 14, 2023
Algorithms
November 14, 2023

Time-Complexity

Question 6

The recurrence relation

 T(1) = 2
 T(n) = 3T(n/4)+n 

has the solution, T(n) equals to

A
O(n)
B
O(log n)
C
O(n3/4)
D
None of the above
Question 6 Explanation: 
Apply Master’s theorem.
Correct Answer: A
Question 6 Explanation: 
Apply Master’s theorem.

Leave a Reply

Your email address will not be published. Required fields are marked *