• 4-11 Isomorphic


    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.

    如果T1可以通过交换T1中(一些)节点的左右子节点而转换为T2,那么T1和T2这两棵树是同构的。例如,图1中的两棵树就是同构的,因为如果交换了A、B和G的子节点而不是其他节点的子节点,它们是相同的。给出一个多项式时间算法来判断两棵树是否同构。

    Format of functions:

    int Isomorphic( Tree T1, Tree T2 );
    

     where Tree is defined as the following:

    1. typedef struct TreeNode *Tree;
    2. struct TreeNode {
    3. ElementType Element;
    4. Tree Left;
    5. Tree Right;
    6. };

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

    如果T1和T2确实同构,则函数应该返回1,否则返回0。

    Sample program of judge:

    1. #include
    2. #include
    3. typedef char ElementType;
    4. typedef struct TreeNode *Tree;
    5. struct TreeNode {
    6. ElementType Element;
    7. Tree Left;
    8. Tree Right;
    9. };
    10. Tree BuildTree(); /* details omitted */
    11. int Isomorphic( Tree T1, Tree T2 );
    12. int main()
    13. {
    14. Tree T1, T2;
    15. T1 = BuildTree();
    16. T2 = BuildTree();
    17. printf(“%d\n”, Isomorphic(T1, T2));
    18. return 0;
    19. }
    20. /* 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
    


    代码:

    1. int Isomorphic(Tree T1, Tree T2) {
    2. if (T1 == NULL && T2 == NULL)
    3. return 1;
    4. else if (T1 == NULL || T2 == NULL || T1->Element != T2->Element)
    5. return 0;
    6. return
    7. Isomorphic(T1->Left, T2->Left) && Isomorphic(T1->Right, T2->Right) || (Isomorphic(T1->Right, T2->Left) && Isomorphic(T1->Left, T2->Right));
    8. }

    递归方法

    1. 确定递归函数的参数和返回值
        题目已经给出,传入两个树的根节点
    2. 确定终⽌条件
        当遍历到叶节点的左孩子和右孩子时,且左右孩子都为空,返回1
    3. 确定单层递归的逻辑
        如果符合,即交换左右子树或者没交换左右子树这两种情况出现一种就行

    如果两个树都是空树的时候,那么同构

    1. if (T1 == NULL && T2 == NULL)
    2. return 1;

    因为上一个if语句判断了左右孩子都是空的情况,这里如果一个根节点是空,另外一个不为空,或者两个根节点的值不同,那么不是同构的

    1. else if (T1 == NULL || T2 == NULL || T1->Element != T2->Element)
    2. return 0;

    同构的情况有两种,一种是交换了:

    (Isomorphic(T1->Right, T2->Left) && Isomorphic(T1->Left, T2->Right))

    一种是没交换的:

    Isomorphic(T1->Left, T2->Left) && Isomorphic(T1->Right, T2->Right)

    这两种情况 出现一种就行:

    1. return
    2. Isomorphic(T1->Left, T2->Left) && Isomorphic(T1->Right, T2->Right) || (Isomorphic(T1->Right, T2->Left) && Isomorphic(T1->Left, T2->Right));

     

  • 相关阅读:
    探索未来:大模型技术的最前沿
    Kafka_2.12-2.1.0+Zookeeper-3.4.13集群部署详细教程
    【X3m】DDR压力测试
    谣言检测(GACL)《Rumor Detection on Social Media with Graph Adversarial Contrastive Learning》
    JavaScript实用库
    h5中左边有侧边栏,如何将右边bootstrap的div的布局设置为两列
    Bearly:基于人工智能的AI写作文章生成工具
    vue基础难点总结
    House of orange
    电脑在开机时出现了bootmenu
  • 原文地址:https://blog.csdn.net/JYHZZ/article/details/127700167