Vidyalelo
Data Structure · Q238

Miscellaneous on Data Structures

Programming · Data Structure · question 238

Q238

What is the result of the recurrences which fall under first case of Master's theorem (let the recurrence be given by T(n)=aT(n/b)+f(n) and f(n)=nc?

A.
T(n) = O(n^logba)
Answer
B.
T(n) = O(nc log n)
C.
T(n) = O(f(n))
D.
T(n) = O(n2)

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board