栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

4-11 Isomorphic (10 分)

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

4-11 Isomorphic (10 分)

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:
int Isomorphic( Tree T1, Tree T2 );
where Tree is defined as the following:

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:
#include
#include

typedef char ElementType;

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

Tree BuildTree();

int Isomorphic( Tree T1, Tree T2 );

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


Sample Output 1 (for the trees shown in Figure 1):
1
结尾无空行
Sample Output 2 (for the trees shown in Figure 2):
0

Figure2

先说一下定义两棵树同构就是通过交换左右子树,两棵树可以交换到相等的形式。
算法就是先建树,再判断是否同构
同构可以通过递归实现
分为三种情况
(1)空根直接返回1

(2)一空一不空或者或者两个根元素不一样返回0

(3)不是上面两种情况就可以递归到下一层进行了,左左 右右配对或者 左右 右左配对,有一个成立就可以了

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));
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/744410.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号