LeetCode 617. Merge Two Binary Trees

题目描述 LeetCode 617

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:

Input: 
    Tree 1                     Tree 2                  
          1                         2                             
         / \                       / \                            
        3   2                     1   3                        
       /                           \   \                      
      5                             4   7                  
Output: 
Merged tree:
         3
        / \
       4   5
      / \   \ 
     5   4   7

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

中文描述

给定两棵二叉树,然后对应的节点数值相加,然后形成一课新的树返回。

解题思路

思路1: 对两棵树依次递归,取出两棵树的数值,依次将新的节点加入新的树。
思路2:不建立新的树,在树 t1 的基础的上,将树 t2 的节点值加上 t1 的节点值,然后重新放入 t1,最终 t1 即为两棵树合并成的新树。

C语言代码 -> 思路1

# include <stdio.h>
# include <stdlib.h>

struct TreeNode
{
    int val;
    struct TreeNode *left;
    struct TreeNode *right;
};

// 先序遍历建树
struct TreeNode *create(struct TreeNode *tree)
{
    int ch;

    scanf("%d", &ch);
    
    if(ch == 0)
    {
        tree = NULL;
    }
    else
    {
        tree = (struct TreeNode *)calloc(1, sizeof(struct TreeNode));
        tree -> val = ch;
        tree -> left  = create(tree -> left);
        tree -> right = create(tree -> right);
    }

    return tree;
}

// 先序遍历输出树
void printorder(struct TreeNode *tree)
{
    if(tree)
    {
        printf("%d ", tree -> val);
        printorder(tree -> left);
        printorder(tree -> right);
    }
}

// 从 t1 和 t2 中取出节点数值,从新创建一颗新树
struct TreeNode* mergeTrees(struct TreeNode* t1, struct TreeNode* t2) 
{
    struct TreeNode *tree = NULL;
    int val = 0;
    
    if(t1 != NULL || t2 != NULL)
    {
        tree = (struct TreeNode *)calloc(1, sizeof(struct TreeNode));

        if( t1 != NULL && t2 != NULL)
        {
            val = t1 -> val + t2 -> val;
            tree -> val = val;
            tree -> left  = mergeTrees(t1 -> left, t2 -> left);
            tree -> right = mergeTrees(t1 -> right, t2 -> right); 
        }
        else if(t1 != NULL && t2 == NULL)
        {
            val = t1 -> val;
            tree -> val = val;
            tree -> left  = mergeTrees(t1 -> left, NULL);
            tree -> right = mergeTrees(t1 -> right, NULL); 
        }
        else if(t1 == NULL && t2 != NULL)
        {
            val = t2 -> val;
            tree -> val = val;
            tree -> left  = mergeTrees(NULL, t2 -> left);
            tree -> right = mergeTrees(NULL, t2 -> right); 
        }

        return tree;
    }
    else
    {
        return NULL;
    }

}

main()
{
    struct TreeNode *t1 = NULL;
    struct TreeNode *t2 = NULL;
    struct TreeNode *tree = NULL;
    
    t1 = create(t1);
    t2 = create(t2);
    
    tree = mergeTrees(t1, t2);
    printorder(tree);
    printf("\n\n");
    /*
    printf("xianxu ->> ");
    printorder(t1);
    printf("\n\n");
    printorder(t2);
    printf("\n");*/
}
验证代码
运行结果

C语言代码 -> 思路2

# include <stdio.h>
# include <stdlib.h>

struct TreeNode
{
    int val;
    struct TreeNode *left;
    struct TreeNode *right;
};

// 先序遍历创建树
struct TreeNode *create(struct TreeNode *tree)
{
    int ch;

    scanf("%d", &ch);
    
    if(ch == 0)
    {
        tree = NULL;
    }
    else
    {
        tree = (struct TreeNode *)calloc(1, sizeof(struct TreeNode));
        tree -> val = ch;
        tree -> left  = create(tree -> left);
        tree -> right = create(tree -> right);
    }

    return tree;
}

// 先序遍历输出树
void printorder(struct TreeNode *tree)
{
    if(tree)
    {
        printf("%d ", tree -> val);
        printorder(tree -> left);
        printorder(tree -> right);
    }
}

// 将树 t2 的内容合并到 t1 上面
struct TreeNode* mergeTrees(struct TreeNode* t1, struct TreeNode* t2) 
{
    if(t1 != NULL || t2 != NULL)
    {
        if( t1 != NULL && t2 != NULL)
        {
            t1 -> val = t1 -> val + t2 -> val;
            t1 -> left  = mergeTrees(t1 -> left, t2 -> left);
            t1 -> right = mergeTrees(t1 -> right, t2 -> right); 

            return t1;
        }
        else if(t1 != NULL && t2 == NULL)
        {
            return t1;
        }
        else  //(t1 == NULL && t2 != NULL)
        {
            return t2;
        }
    }
    else
    {
        return NULL;
    }
}

main()
{
    struct TreeNode *t1 = NULL;
    struct TreeNode *t2 = NULL;
    
    t1 = create(t1);
    t2 = create(t2);
    
    t1 = mergeTrees(t1, t2);
    printorder(t1);
    printf("\n\n");
}
验证代码
运行结果

思路2 代码精简版

看着谈论区里面的解答,优秀和思路2 类似,但是我的判断有点多,所以精简一下,但是大体实现思路是一致的,不可思议的是,精简之后的 runtime 还是和前两个 runtime 一模一样,真是费解!!!

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     struct TreeNode *left;
 *     struct TreeNode *right;
 * };
 */
struct TreeNode* mergeTrees(struct TreeNode* t1, struct TreeNode* t2) 
{
    if(t1 == NULL)
    {
        return t2;
    }
    else if(t2 == NULL)
    {
        return t1;
    }
    
    t1 -> val = t1 -> val + t2 -> val;
    t1 -> left  = mergeTrees(t1 -> left, t2 -> left);
    t1 -> right = mergeTrees(t1 -> right, t2 -> right); 

    return t1;
}
运行结果

思考

  • 两种思路按理说 思路2 的 runtime 应该小的,毕竟没有创建新的树嘛,,但是两个思路代码竟然时间一样,都是 20ms,,真是,,不得其所!!!
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 218,525评论 6 507
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 93,203评论 3 395
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 164,862评论 0 354
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,728评论 1 294
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,743评论 6 392
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,590评论 1 305
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,330评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 39,244评论 0 276
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,693评论 1 314
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,885评论 3 336
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 40,001评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,723评论 5 346
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,343评论 3 330
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,919评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 33,042评论 1 270
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 48,191评论 3 370
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,955评论 2 355

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,332评论 0 10
  • 安静点的时候,脑袋里才会蹦出点东西出来。 今天看完了《2401》,很是被英鸣的性格所吸引。书中的,那样的,富有点层...
    连山出云阅读 383评论 0 0
  • 这是一片四季常青的绿色净土,这是一座艳惊八方的美丽家园,这是传说中龙王居住的山谷,这是一个“叫人不想家的地方”……...
    沪虎阅读 291评论 0 0
  • 01 关于电影《一一》早就想写点什么了,因为它对生活的再现真的很真实,但也正因为真实,它承载的内容太多——从人的出...
    陆离_luli阅读 786评论 0 1
  • 这本《麦卡锡工具》说来也巧,我在高中时期就加了一个麦卡锡QQ群,当时也读过麦卡锡的著作,但当时的我并没有完全懂,当...
    一划春秋阅读 611评论 0 0