Update binary_tree.md

pull/30/head
Yudong Jin 2 years ago committed by GitHub
parent 565fe49205
commit aeff61ef3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -57,7 +57,7 @@ comments: true
<div class="center-table" markdown> <div class="center-table" markdown>
| | 完美二叉树 | 链表 | | | 完美二叉树 | 链表 |
| ----------------------------- | ---------- | -------------- | | ----------------------------- | ---------- | ---------- |
| 二叉树第 $i$ 层的结点数量 | $2^{i-1}$ | $1$ | | 二叉树第 $i$ 层的结点数量 | $2^{i-1}$ | $1$ |
| 高度为 $h$ 的二叉树的结点总数 | $2^h - 1$ | $h$ | | 高度为 $h$ 的二叉树的结点总数 | $2^h - 1$ | $h$ |
| 结点总数为 $n$ 的二叉树的高度 | $\log_2 n + 1$ | $n$ | | 结点总数为 $n$ 的二叉树的高度 | $\log_2 n + 1$ | $n$ |

Loading…
Cancel
Save