This commit is contained in:
krahets
2026-04-03 18:46:21 +08:00
parent f0b41a9e85
commit 5b59dbded2
56 changed files with 61 additions and 61 deletions
@@ -5548,7 +5548,7 @@ T(n) & = n^2 + n & \text{Simplified count (o.O)}
<div class="arithmatex">\[
\begin{aligned}
O(1) &lt; O(\log n) &lt; O(n) &lt; O(n \log n) &lt; O(n^2) &lt; O(2^n) &lt; O(n!) \newline
\text{Constant order} &lt; \text{Logarithmic order} &lt; \text{Linear order} &lt; \text{Linearithmic order} &lt; \text{Quadratic order} &lt; \text{Exponential order} &lt; \text{Factorial order}
\text{Constant} &lt; \text{Logarithmic} &lt; \text{Linear} &lt; \text{Linearithmic} &lt; \text{Quadratic} &lt; \text{Exponential} &lt; \text{Factorial}
\end{aligned}
\]</div>
<p><img alt="Common time complexity types" class="animation-figure" src="../time_complexity.assets/time_complexity_common_types.png" /></p>