LeetCode-Invert Binary Tree

来源:互联网 发布:sd卡数据修复 编辑:程序博客网 时间:2024/06/06 08:28

  • problem:

Invert a binary tree.

     4   /   \  2     7 / \   / \1   3 6   9

to

     4   /   \  7     2 / \   / \9   6 3   1

  • analysis:

利用递归将root的左节点赋值为转换了右子树的右节点,将root的右节点赋值为转换了左子树的左节点,并返回root。

  • anwser:

/** * Definition for a binary tree node. * public class TreeNode { *     int val; *     TreeNode left; *     TreeNode right; *     TreeNode(int x) { val = x; } * } */public class Solution {    public TreeNode invertTree(TreeNode root) {        if(root ==null) return root;        TreeNode temp = null;        temp = root.left;        root.left=invertTree(root.right);        root.right=invertTree(temp);        return root;    }}


0 0
原创粉丝点击