Invert a binary tree.
Example:
Input:
1 | 4 |
Output:
1 | 4 |
思路:
递归查找左右子树,以题为例,当递归的左子树2的时候,将1和3交换,当递归到右子树7的时候,交换6和9。
1 | /** |
Example:
Input:
1 | 4 |
Output:
1 | 4 |
思路:
递归查找左右子树,以题为例,当递归的左子树2的时候,将1和3交换,当递归到右子树7的时候,交换6和9。
1 | /** |
本文标题:June Leetcoding Challenge(6.1)
文章作者:Jungle
发布时间:2020年06月01日 - 08:29
最后更新:2020年06月02日 - 09:22
原始链接:http://yoursite.com/2020/06/01/LeetCodeJune1st/
许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。
Welcome to my other publishing channels