can some one provide me a real time example for how to calculate big theta
is big theta some thing like average case, (min-max)/2
i mean (minimum time - big O)/2
Please correct me if Iam wrong, thanks
Regards, Navin
|
can some one provide me a real time example for how to calculate big theta is big theta some thing like average case, (min-max)/2 i mean (minimum time - big O)/2 Please correct me if Iam wrong, thanks Regards, Navin
| |||||||
feedback
|
|
Big-theta notation represents the following rule:
Here's an example algorithm:
We wish to evaluate the cost function
Note that However, since | |||||
feedback
|
|
Big theta is a tight bound, for a function In other words Theta(f(n)) 'describes' a function T(n), if both O [big O] and Omega, 'describe' the same T, with the same f. for example, a quicksort [with correct median choices], always takes at most O(nlogn), at at least Omega(nlogn), so quicksort [with good median choices] is Theta(nlogn) EDIT:
added discussion in comments:
| |||||
feedback
|
|
From http://en.wikipedia.org/wiki/Big_O_notation#Related_asymptotic_notations, we learn that "Big O" denotes an upper bound, whereas "Big Theta" denotes an upper and lower bound, i.e. in the limit as
So you cannot infer Big Theta from Big O. | |||||
feedback
|