This commit is contained in:
krahets
2023-12-14 02:53:34 +08:00
parent 90491b823f
commit f64f6651d5
17 changed files with 57 additions and 57 deletions

View File

@@ -1851,7 +1851,7 @@ $$
### 4.   指数阶 $O(2^n)$
指数阶常见于二叉树。观察图 2-19 高度为 $n$ 的“满二叉树”的节点数量为 $2^n - 1$ ,占用 $O(2^n)$ 空间:
指数阶常见于二叉树。观察图 2-19 层数为 $n$ 的“满二叉树”的节点数量为 $2^n - 1$ ,占用 $O(2^n)$ 空间:
=== "Python"