Sometimes I see Θ(n) with the strange Θ symbol with something in the middle of it, and sometimes just O(n). Is it just laziness of typing because nobody knows how to type this symbol, or does it mean something different?
|
18
|
|||||
|
|
|
To explain it to your grandma:
Normally, even when people talk about More technically:
For example, an upper bound for the naive recursive approach to compute Fibonacci sequence is:
but the tight bound is
which is also a valid upper bound. Basically when we say an algorithm is of In fact, if we assume the set of functions
There is also a small-oh and small-omega ( To summarize:
So we can reformulate
I tried to avoid mathematical definition of these notations in this post (did I say I hate theoretical CS? :D). For a more detailed discussion, you can either use Google or read the classic (Introduction to Algorithms, CLRS). |
||||||||||||
|
|
|
one is Big "O" one is Big Theta http://en.wikipedia.org/wiki/Big_O_notation Big O means your algorithm will execute in no more steps than in given expression(n^2) Big Omega means your algorithm will execute in no fewer steps than in the given expression(n^2) When both condition are true for the same expression, you can use the big theta notation.... |
||||||||
|
|
|
There's a simple way (a trick, I guess) to remember which notation means what. All of the Big-O notations can be considered to have a bar. When looking at a Ω, the bar is at the bottom, so it is an (asymptotic) lower bound. When looking at a Θ, the bar is obviously in the middle. So it is an (asymptotic) tight bound. When handwriting O, you usually finish at the top, and draw a squiggle. Therefore O(n) is the upper bound of the function. To be fair, this one doesn't work with most fonts, but it is the original justification of the names. |
||
|
|
|
|
f(n) belongs to O(n) if exists positive k as f(n)<=k*n f(n) belongs to Θ(n) if exists positive k1, k2 as k1*n<=f(n)<=k2*n |
||
|
|
|
That character is Theta, by the way. I think this wikipedia article will explain big-O, big-theta, and others quite well... |
||
|
|
