in Algorithms retagged by
875 views
1 vote
1 vote

Suppose $T(n)=2T(n/2)+n$, $T(0)=T(1)=1$ which one of the following is false?

  1. $T(n)=O(n^2)$
  2. $T(n)=\Theta(n\log n)$
  3. $T(n)=\Omega(n^2)$
  4. $T(n)=O(n\log n)$
in Algorithms retagged by
by
875 views

1 comment

Option c is correct
0
0

1 Answer

2 votes
2 votes

It is the recurrence relation of Merge−Sort Merge−Sort.

The time complexity of merge sort is  $Θ(nlogn)$.So, it can not be $Ω(n^{2})$

Answer:

Related questions