edited by
441 views
0 votes
0 votes
hello sir i have doubt in this question.

T(n) >= 2T(n/2) + theta(n)

option are:

O(n log n)

omega(n log n)

theta (n log n)

how we to select which sign i have to use

omega ,big oh ,theta

??????
edited by

1 Answer

0 votes
0 votes
Here in ur question use Master Theorem use 2(a) as a=b and p=0

So a = 2,b=2,k=1,p=0

Using this we get nlogn,

Now as T(n)>= function so use Omega

So ans is Omega(nlogn)

Related questions

0 votes
0 votes
1 answer
1
3 votes
3 votes
1 answer
2