Skip to content

Commit

Permalink
Merge pull request youngyangyang04#1346 from areslk/areslk-patch-1
Browse files Browse the repository at this point in the history
Update 0110.平衡二叉树.md
  • Loading branch information
youngyangyang04 committed Jun 10, 2022
2 parents c85105c + d6d227c commit 0bb5277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion problems/0110.平衡二叉树.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ int getHeight(TreeNode* node) {
```CPP
class Solution {
public:
// 返回以该节点为根节点的二叉树的高度,如果不是二叉搜索树了则返回-1
// 返回以该节点为根节点的二叉树的高度,如果不是平衡二叉树了则返回-1
int getHeight(TreeNode* node) {
if (node == NULL) {
return 0;
Expand Down

0 comments on commit 0bb5277

Please sign in to comment.