摘要:
代码: #include <stdio.h> #include <stdlib.h> #define MaxVertexNum 100 // 最大顶点数设为 100 typedef int Vertex; // 用顶点下标表示顶点, 为整型 typedef int WeightType; // 边的 阅读全文
摘要:
代码: #include <stdio.h> #include <stdlib.h> #define MaxVertexNum 100 // 最大顶点数设为 100 #define INFINITY 65535 // 无穷大设为双字节无符号整数的最大值 65535 typedef int Verte 阅读全文
摘要:
题目描述 给定两棵树T1和T2。如果T1可以通过若干次左右孩子互换就变成T2,则我们称两棵树是“同构”的。例如图1给出的两棵树就是同构的,因为我们把其中一棵树的结点A、B、G的左右孩子互换后,就得到另外一棵树。而图2就不是同构的。 图1 --> 图2 --> 现给定两棵树,请你判断它们是否是同构的。 阅读全文