Some standard books on Algorithms produce this:
0 ≤ f(n) ≤ c⋅g(n) for all n > n0
While defining big-O, can anyone explain to me what this means, using a strong example which can help me to visualize and understand big-O more precisely?
|
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Assume you have a function The definition basically says that
Now, let's understand what it means. Start with the Have a look on the following example:
Though we can see that for low values of n: |
|||
|
|
|
This question is a math problem, not an algorithmic one. You can find a definition and a good example here: http://math.stackexchange.com/questions/259063/big-o-interpretation As @Thomas pointed out, Wikipedia also has a good article on this: http://en.wikipedia.org/wiki/Big_O_notation If you need more details, try to ask a more specific question. |
|||
|
|