UPDATE 0222 修改其中两个错别字

This commit is contained in:
huhaonan
2023-01-05 21:42:53 +08:00
parent 2863a699cc
commit 49fc701e48

View File

@ -188,7 +188,7 @@ public:
```CPP
if (root == nullptr) return 0;
// 开始根据深度和深度是否相同来判断该子树是不是满二叉树
// 开始根据深度和深度是否相同来判断该子树是不是满二叉树
TreeNode* left = root->left;
TreeNode* right = root->right;
int leftDepth = 0, rightDepth = 0; // 这里初始为0是有目的的为了下面求指数方便
@ -843,3 +843,4 @@ impl Solution {
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
</a>