diff options
| author | root <root@learnxinyminutes.com> | 2018-08-25 02:38:11 +0000 | 
|---|---|---|
| committer | root <root@learnxinyminutes.com> | 2018-08-25 02:38:11 +0000 | 
| commit | afd18bd4ed4a898e493e99459cc72aaf97163272 (patch) | |
| tree | 4770ac0eafe30e8b4e81c573a13b519ec37dfda6 /asymptotic-notation.html.markdown | |
| parent | 6f2003a31f900c1ce3ff1dde64b17c7ac02350cc (diff) | |
| parent | 5359298b0d5bd3f18cdd8521abf41e8048cac5f6 (diff) | |
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs
Diffstat (limited to 'asymptotic-notation.html.markdown')
| -rw-r--r-- | asymptotic-notation.html.markdown | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/asymptotic-notation.html.markdown b/asymptotic-notation.html.markdown index 6a6df968..a1dfe9e1 100644 --- a/asymptotic-notation.html.markdown +++ b/asymptotic-notation.html.markdown @@ -155,7 +155,7 @@ Small-o, commonly written as **o**, is an Asymptotic Notation to denote the  upper bound (that is not asymptotically tight) on the growth rate of runtime   of an algorithm. -`f(n)` is o(g(n)), if for some real constants c (c > 0) and n<sub>0</sub> (n<sub>0</sub> > 0), `f(n)` is < `c g(n)`  +`f(n)` is o(g(n)), if for all real constants c (c > 0) and n<sub>0</sub> (n<sub>0</sub> > 0), `f(n)` is < `c g(n)`   for every input size n (n > n<sub>0</sub>).  The definitions of O-notation and o-notation are similar. The main difference  @@ -168,7 +168,7 @@ Small-omega, commonly written as **ω**, is an Asymptotic Notation to denote  the lower bound (that is not asymptotically tight) on the growth rate of   runtime of an algorithm. -`f(n)` is ω(g(n)), if for some real constants c (c > 0) and n<sub>0</sub> (n<sub>0</sub> > 0), `f(n)` is > `c g(n)`  +`f(n)` is ω(g(n)), if for all real constants c (c > 0) and n<sub>0</sub> (n<sub>0</sub> > 0), `f(n)` is > `c g(n)`   for every input size n (n > n<sub>0</sub>).  The definitions of Ω-notation and ω-notation are similar. The main difference  | 
