From 565fe49205948e00ba2961c49cc8213dc31dacf1 Mon Sep 17 00:00:00 2001 From: qualifier1024 <102360259+qualifier1024@users.noreply.github.com> Date: Sat, 26 Nov 2022 19:32:59 +0800 Subject: [PATCH] Update binary_tree.md --- docs/chapter_tree/binary_tree.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/chapter_tree/binary_tree.md b/docs/chapter_tree/binary_tree.md index a53507da6..e55174581 100644 --- a/docs/chapter_tree/binary_tree.md +++ b/docs/chapter_tree/binary_tree.md @@ -60,7 +60,7 @@ comments: true | ----------------------------- | ---------- | -------------- | | 二叉树第 $i$ 层的结点数量 | $2^{i-1}$ | $1$ | | 高度为 $h$ 的二叉树的结点总数 | $2^h - 1$ | $h$ | -| 结点总数为 $n$ 的二叉树的高度 | $n$ | $\log_2 n + 1$ | +| 结点总数为 $n$ 的二叉树的高度 | $\log_2 n + 1$ | $n$ |