From b93a17e029ee86b32f57034ffac958434b9999de Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=BA=AF=E6=B8=BA?=
<115880212+bitsmi@users.noreply.github.com>
Date: Mon, 22 Jul 2024 16:33:06 +0800
Subject: [PATCH] Update binary_tree.md
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
关于完全二叉树严谨性补充:完美二叉树是一棵特殊的完全二叉树,完全二叉树的最底层节点可以是满的。
---
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 18db2d51c..20c7a4f60 100644
--- a/docs/chapter_tree/binary_tree.md
+++ b/docs/chapter_tree/binary_tree.md
@@ -651,7 +651,7 @@
### 完全二叉树
-如下图所示,完全二叉树(complete binary tree)只有最底层的节点未被填满,且最底层节点尽量靠左填充。
+如下图所示,完全二叉树(complete binary tree)只有最底层的节点未被填满,且最底层节点尽量靠左填充。特别的,如果最后一层节点被填满,则这棵树既是完美二叉树,又是完全二叉树。
