diff --git a/docs/chapter_tree/binary_tree.md b/docs/chapter_tree/binary_tree.md
index f13bfcb55..6635e0d13 100644
--- a/docs/chapter_tree/binary_tree.md
+++ b/docs/chapter_tree/binary_tree.md
@@ -655,7 +655,7 @@
### 完全二叉树
-如下图所示,完全二叉树(complete binary tree)只有最底层的节点未被填满,且最底层节点尽量靠左填充。请注意,完美二叉树也是一棵完全二叉树。
+如下图所示,完全二叉树(complete binary tree)仅允许最底层的节点不完全填满,且最底层的节点必须从左至右依次连续填充。请注意,完美二叉树也是一棵完全二叉树。

diff --git a/en/README.md b/en/README.md
index 06cf1a2da..04909fb45 100644
--- a/en/README.md
+++ b/en/README.md
@@ -4,7 +4,7 @@
-
+
Data structures and algorithms crash course with animated illustrations and off-the-shelf code
diff --git a/en/docs/chapter_tree/binary_tree.md b/en/docs/chapter_tree/binary_tree.md
index befce86cb..b06570218 100644
--- a/en/docs/chapter_tree/binary_tree.md
+++ b/en/docs/chapter_tree/binary_tree.md
@@ -106,7 +106,7 @@ A binary tree is a non-linear data structure that represents the hierarch
val: number;
left: TreeNode | null;
right: TreeNode | null;
-
+
constructor(val?: number, left?: TreeNode | null, right?: TreeNode | null) {
this.val = val === undefined ? 0 : val; // Node value
this.left = left === undefined ? null : left; // Reference to left child node
@@ -625,7 +625,7 @@ As shown in the figure below, in a perfect binary tree, all levels are co
### Complete binary tree
-As shown in the figure below, a complete binary tree is a binary tree where only the nodes in the bottom level are not completely filled, and the nodes in the bottom level are filled from left to right as much as possible. Please note that a perfect binary tree is also a complete binary tree.
+As shown in the figure below, a complete binary tree is a binary tree where only the bottom level is possibly not completely filled, and nodes at the bottom level must be filled continuously from left to right. Note that a perfect binary tree is also a complete binary tree.

diff --git a/zh-hant/docs/chapter_tree/binary_tree.md b/zh-hant/docs/chapter_tree/binary_tree.md
index dbbb9f270..a2e590b19 100644
--- a/zh-hant/docs/chapter_tree/binary_tree.md
+++ b/zh-hant/docs/chapter_tree/binary_tree.md
@@ -655,7 +655,7 @@
### 完全二元樹
-如下圖所示,完全二元樹(complete binary tree)只有最底層的節點未被填滿,且最底層節點儘量靠左填充。請注意,完美二元樹也是一棵完全二元樹。
+如下圖所示,完全二元樹(complete binary tree)僅允許最底層的節點不完全填滿,且最底層的節點必須從左至右依次連續填充。請注意,完美二元樹也是一棵完全二元樹。
