前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >4-11 Isomorphic (10 分)

4-11 Isomorphic (10 分)

作者头像
韩旭051
发布2019-11-07 22:53:55
4750
发布2019-11-07 22:53:55
举报
文章被收录于专栏:刷题笔记

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

本文链接:https://blog.csdn.net/shiliang97/article/details/102699401

4-11 Isomorphic (10 分)

Two trees, T1 and T2, are isomorphic if T1 can be transformed into T2 by swapping left and right children of (some of the) nodes in T1. For instance, the two trees in Figure 1 are isomorphic because they are the same if the children of A, B, and G, but not the other nodes, are swapped. Give a polynomial time algorithm to decide if two trees are isomorphic.

Figure 1

Format of functions:

代码语言:javascript
复制
int Isomorphic( Tree T1, Tree T2 );

where Tree is defined as the following:

代码语言:javascript
复制
typedef struct TreeNode *Tree;
struct TreeNode {
    ElementType Element;
    Tree  Left;
    Tree  Right;
};

The function is supposed to return 1 if T1 and T2 are indeed isomorphic, or 0 if not.

Sample program of judge:

代码语言:javascript
复制
#include <stdio.h>
#include <stdlib.h>

typedef char ElementType;

typedef struct TreeNode *Tree;
struct TreeNode {
    ElementType Element;
    Tree  Left;
    Tree  Right;
};

Tree BuildTree(); /* details omitted */

int Isomorphic( Tree T1, Tree T2 );

int main()
{
    Tree T1, T2;
    T1 = BuildTree();
    T2 = BuildTree();
    printf(“%d\n”, Isomorphic(T1, T2));
    return 0;
}

/* Your function will be put here */

Sample Output 1 (for the trees shown in Figure 1):

代码语言:javascript
复制
1

Sample Output 2 (for the trees shown in Figure 2):

代码语言:javascript
复制
0

Figure2

递归这种思想,很有14

写递归的技巧是管好当下,之后的事抛给递归。具体到这里,不管 N 是多少,当前的选择只有两个:匹配 0 次、匹配 1 次。所以可以这样处理:

空根刚刚好,肯定是对的。

一空一不空,&&或者俩元素不一样肯定不对呀

左左 右右配对||,或者 左右 右左配对上一个就行了

代码语言:javascript
复制
int Isomorphic( Tree T1, Tree T2 ){
    if(T1==NULL&&T2==NULL) return 1;
    else if(T1==NULL||T2==NULL||T1->Element!=T2->Element) return 0;
    return Isomorphic(T1->Left,T2->Left)&&Isomorphic(T1->Right,T2->Right)||(Isomorphic(T1->Right,T2->Left)&&Isomorphic(T1->Left,T2->Right));
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/10/23 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 4-11 Isomorphic (10 分)
    • Format of functions:
      • Sample program of judge:
        • Sample Output 1 (for the trees shown in Figure 1):
          • Sample Output 2 (for the trees shown in Figure 2):
          • 递归这种思想,很有14
          领券
          问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档