添加 0110.平衡二叉树.md 注释

This commit is contained in:
Arthur
2021-11-04 10:21:03 +00:00
parent d67a01f212
commit ad19a88ecf

View File

@ -635,7 +635,7 @@ var isBalanced = function(root) {
};
```
##C
## C
递归法:
```c
int getDepth(struct TreeNode* node) {