博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT-树的同构
阅读量:4984 次
发布时间:2019-06-12

本文共 2052 字,大约阅读时间需要 6 分钟。

链接

题意

同构的定义: 给定两棵树T1和T2。如果T1可以通过若干次左右孩子互换就变成T2,则我们称两棵树是“同构”的。

给两棵树,判断是否同构

做法

先建树,然后判断,知道怎么判断就知道怎么写了,具体实现看代码

代码

/*    Name: hello world.cpp    Author: AA    Description: 唯代码与你不可辜负*/#include
using namespace std;#define LL long long#define maxn 20100typedef struct Node { char data; int left; int right;} Tree;Tree t1[maxn], t2[maxn];int build(Tree T[]) { int n, cherk[maxn], root = -1; char cl, cr; scanf("%d", &n); getchar(); if(n) { for(int i = 0; i < n; i++) cherk[i] = 0; for(int i = 0; i < n; i++) { scanf("%c %c %c", &T[i].data, &cl, &cr); getchar(); if(cl != '-') { T[i].left = cl - '0'; cherk[T[i].left] = 1; } else T[i].left = -1; if(cr != '-') { T[i].right = cr - '0'; cherk[T[i].right] = 1; } else T[i].right = -1; } for(int i = 0; i < n; i++) { if(cherk[i] == 0) { root = i; break; } } } return root;}bool Isomorphic(int root1, int root2) { if(root1 == -1 && root2 == -1) return true;//都是空的,符合 else if((root1 == -1 && root2 != -1) || (root1 != -1 && root2 == -1)) return false; //一个空一个不空当然不符合 else if(t1[root1].data != t2[root2].data) return false; //元素不相等不符合 else if(t1[root1].left == -1 && t2[root2].left == -1) //左子树都是空的话,就判断右子树 return Isomorphic(t1[root1].right, t2[root2].right); else if(t1[t1[root1].left].data == t2[t2[root2].left].data)//左子树的元素都相同的话就把他们的左右子树都判断 return (Isomorphic(t1[root1].left, t2[root2].left) && Isomorphic(t1[root1].right, t2[root2].right)); else //最后是把左右子树交换来判断 return (Isomorphic(t1[root1].left, t2[root2].right) && Isomorphic(t1[root1].right, t2[root2].left));}int main() { int root1, root2; root1 = build(t1); root2 = build(t2); if(Isomorphic(root1, root2)) puts("Yes"); else puts("No");}

转载于:https://www.cnblogs.com/zhien-aa/p/6651993.html

你可能感兴趣的文章
markdown 一个优雅的写作工具
查看>>
poj1064 Cable master(二分查找,精度)
查看>>
Python 基础篇:编码、变量、模块
查看>>
关于Intellij IDEA导入jdk出现异常
查看>>
HLS切片机
查看>>
单链表的反转
查看>>
习题3.5 求链表的倒数第m个元素(20 分)浙大版《数据结构(第2版)》题目集...
查看>>
1102. Invert a Binary Tree (25)
查看>>
MySQL 索引详解
查看>>
LinkedList,ArrayList末尾插入谁效率高?
查看>>
Spring-MVC理解之一:应用上下文webApplicationContext
查看>>
[LeetCode] IP to CIDR 将IP地址转为CIDR无类别域间路由
查看>>
bbs
查看>>
西布尔是一家定位独特、垂直整合的天然气加工及石化公司
查看>>
Django 1.8 admin 产生'WSGIRequest' object has no attribute 'user'的错误
查看>>
Python学习之==>内置函数、列表生成式、三元表达式
查看>>
一个Tomcat下部署两个,甚至多个项目
查看>>
千万级并发实现的秘密:内核不是解决方案,而是问题所在!
查看>>
MKNetworkKit
查看>>
2222
查看>>