leetcode617.合并二叉树

leetcode617.合并二叉树

题目

给定两个二叉树,想象当你将它们中的一个覆盖到另一个上时,两个二叉树的一些节点便会重叠。

你需要将他们合并为一个新的二叉树。合并的规则是如果两个节点重叠,那么将他们的值相加作为节点合并后的新值,否则不为 NULL 的节点将直接作为新二叉树的节点。

用例

输入: 
	Tree 1                     Tree 2                  
          1                         2                             
         / \                       / \                            
        3   2                     1   3                        
       /                           \   \                      
      5                             4   7                  
输出: 
合并后的树:
	     3
	    / \
	   4   5
	  / \   \ 
	 5   4   7

求解

/**
 * Definition for a binary tree node.
 * function TreeNode(val, left, right) {
 *     this.val = (val===undefined ? 0 : val)
 *     this.left = (left===undefined ? null : left)
 *     this.right = (right===undefined ? null : right)
 * }
 */
/**
 * @param {TreeNode} root1
 * @param {TreeNode} root2
 * @return {TreeNode}
 */
var mergeTrees = function(root1, root2) {
    let res = pre(root1,root2)
    return res

    function pre(root1,root2){
        if(root1==null&&root2==null){
            return null
        }
        if(root1==null){
            return root2
        }else if(root2==null){
            return root1
        }else{
            root1.val=root1.val+root2.val
        }
        root1.left = pre(root1.left,root2.left)
        root1.right = pre(root1.right,root2.right)

        return root1
    }
};
上一篇:另一棵树的子树(LeetCode)


下一篇:MySQL blocked nested loop join(bnl)和index nested loop join(inl)