二叉搜索树【浙江大学】★

查看原题目请点我这里

解题思路

首先进行根据输入的数据建立二叉排序树,然后将后面的输入依次与最开始的树对比是否是相同的树。关于是否是两棵相同的树,LeetCode上面有道这样的题,好多大神写的代码简洁又高效,我刚好想到这上面的这道题,直接搬过来用了。

版本2

#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <queue>
#include <cstdio>
#include <cctype>
#include <unordered_map>
#include <map>
using namespace std;
const int N = 1005;
typedef pair<int, string> PII;
struct tree{
	char val;
	tree* left, *right;
	tree(char x){
		val = x;
		left = right = nullptr;
	}
};
void create(tree* &root, char val){
	if(!root){
		root = new tree(val);
	}else if(val > root->val)
		create(root->right, val);
	else 
		create(root->left, val);
} 
bool issame(tree* p, tree* q){
	if(!p || !q) return !p && !q;
	if(p->val != q->val) return false;
	return issame(p->left, q->left) && issame(p->right, q->right);
}
int main(){
	int n, x;
	while(cin>>n){
		if(!n) break;
		tree* root = nullptr;
		string str;
		cin>>str;
		for(auto c: str){ 
			create(root, c);
		}
		for(int i = 0; i < n; i++){
			cin>>str;
			tree* rt = nullptr;
			for(auto c: str){ 
				create(rt, c);
			}
			if(issame(root, rt)) cout<<"YES"<<endl;
			else cout<<"NO"<<endl;
		}	
	} 
	return 0;
}

版本1

#include<cstdio>
#include<cstring>
struct node{
	int data;
	node *lchild,*rchild;
}; 
char str[15],s[15];
void insert(node* &root,int data){
	if(root==NULL){
		root=new node;
		root->data=data;
		root->lchild=root->rchild=NULL;
		return;
	}
	if(data > root->data) 
		insert(root->rchild,data);
	else 
		insert(root->lchild,data);
}
bool sameTree(node* p,node* q){
	if(p==0) return q==0;
	if(q==0) return false;
	return p->data==q->data&&sameTree(p->lchild,q->lchild)&&sameTree(p->rchild,q->rchild);
}
int main(){
	int n;
	while(scanf("%d",&n)!=EOF&&n!=0){
		scanf("%s",str);
		int len=strlen(str);
		node *root=NULL;
		for(int i=0;i<len;i++){
			insert(root,str[i]-'0');
		}
		for(int i=0;i<n;i++){
			scanf("%s",s);
			node *root1=NULL;
			int len1=strlen(s);
			for(int i=0;i<len1;i++){
				insert(root1,s[i]-'0');
			}
			if(sameTree(root,root1))
				printf("YES\n");
			else 
				printf("NO\n");
		}	
	}
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值