Skip to content

Latest commit

 

History

History
34 lines (30 loc) · 598 Bytes

算法-二叉树-递归-二叉树反转.md

File metadata and controls

34 lines (30 loc) · 598 Bytes
原二叉树:
     4
   /   \
  2     7
 / \   / \
1   3 6   9

反转后的二叉树:

     4
   /   \
  7     2
 / \   / \
9   6 3   1
class Solution {
    public TreeNode invertTree(TreeNode root) {
        if(root == null){
            return null;
        }
        invertTree(root.left);
        invertTree(root.right);
        TreeNode temp = root.left;
        root.left = root.right;
        root.right = temp;
        return root;
    }
}

欢迎光临我的博客,发现更多技术资源~