Revised the book. (#987)

This commit is contained in:
Yudong Jin
2023-12-14 02:42:53 +08:00
committed by GitHub
parent d67c458caa
commit ed4de4644f
18 changed files with 58 additions and 58 deletions

View File

@ -760,7 +760,7 @@ $$
### 指数阶 $O(2^n)$
指数阶常见于二叉树。观察下图,高度为 $n$ 的“满二叉树”的节点数量为 $2^n - 1$ ,占用 $O(2^n)$ 空间:
指数阶常见于二叉树。观察下图,层数为 $n$ 的“满二叉树”的节点数量为 $2^n - 1$ ,占用 $O(2^n)$ 空间:
```src
[file]{space_complexity}-[class]{}-[func]{build_tree}