LintCode-375.克隆二叉树

题目

描述

深度复制一个二叉树。

给定一个二叉树,返回一个他的 克隆品 。

样例

给定一个二叉树:

     1
   /  \
  2    3
 / \
4   5

返回其相同结构相同数值的克隆二叉树:

     1
   /  \
  2    3
 / \
4   5

解答

思路

从后往前遍历,跳过最后的空格。

代码

/**
 * Definition of TreeNode:
 * public class TreeNode {
 *     public int val;
 *     public TreeNode left, right;
 *     public TreeNode(int val) {
 *         this.val = val;
 *         this.left = this.right = null;
 *     }
 * }
 */
public class Solution {
    /**
     * @param root: The root of binary tree
     * @return root of new tree
     */
    public TreeNode cloneTree(TreeNode root) {
        // Write your code here
        if(root == null) return null;
        TreeNode cloneNode = new TreeNode(root.val);
        cloneNode.left = cloneTree(root.left);
        cloneNode.right = cloneTree(root.right);
        return cloneNode;
    }
}

你可能感兴趣的:(LintCode-375.克隆二叉树)