您的位置:首页 > Web前端 > JavaScript

【Leetcode】Merge Two Binary Trees 合并两个二叉树

2017-10-27 21:26 507 查看
Given two binary trees and imagine that when you put one of them to cover the other, some nodes of the two trees are overlapped while the others are not.

You need to merge them into a new binary tree. The merge rule is that if two nodes overlap, then sum node values up as the new value of the merged node. Otherwise, the NOT null node will be used as the node of new tree.

Example 1:



Note: The merging process must start from the root nodes of both trees.

/**
* Definition for a binary tree node.
* function TreeNode(val) {
*     this.val = val;
*     this.left = this.right = null;
* }
*/
/**
* @param {TreeNode} t1
* @param {TreeNode} t2
* @return {TreeNode}
*/
var mergeTrees = function(t1, t2) {
node = null
return mergeTrees2(t1, t2, node)
};

function mergeTrees2(t1, t2, node) {
if(t1 != null && t2 != null) {
node  = new TreeNode(t1.val+t2.val)
node.left = mergeTrees2(t1.left, t2.left, node.left)
node.right = mergeTrees2(t1.right, t2.right, node.right)
}else {
node = t1 || t2
}
return node
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  二叉树 leetcode js