题目
官方way
递归
java实现
1 | class Solution { |
C++实现
1 | /** |
总结
- 自己一开始的递归思路不合理。
- 递归终止条件: 到达
nullptr
处,return false
- 递归状态:
当前结点值 == 1
左子树 == 全为1
右子树 == 全为1
Reference
https://leetcode-cn.com/problems/binary-tree-pruning/solution/er-cha-shu-jian-zhi-by-leetcode/