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 <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):
1
Sample Output 2 (for the trees shown in Figure 2):
0
Figure2
已经参考过其他前辈的,代码如下
int Isomorphic( Tree T1, Tree T2 ){ //用递归
Tree t1=T1;
Tree t2=T2;
if(t1==NULL&&t2==NULL){
return 1;
}
if((!t1&&t2)||(!t2&&t1)){
return 0;
}
if(t1->Element!=t2->Element){
return 0;
}
if(!t1->Left&&!t2->Left){
return Isomorphic(t1->Right,t2->Right);
}
if(t1->Left&&t2->Left&&(t1->Left->Element==t2->Left->Element)){ //判断t1->Right
return Isomorphic(t1->Left,t2->Left)&&Isomorphic(t1->Right,t2->Right); //判断左边
}
else{
return Isomorphic(t1->Left,t2->Right)&&Isomorphic(t1->Right,t2->Left);
}
}