Trie樹的基本操作

#include <iostream>
#include <cstdlib>
#include <stdio.h>
#define MAX 26
using namespace std;

typedef struct TrieNode{
	bool isStr;//標記該節點處是否構成單詞
	struct TrieNode* next[MAX];//孩子分支
}Trie;

void insert(Trie *root, const char* s)//將單詞s插入到Trie中
{
	if(root==NULL || *s=='\0')
		return;

	int i;
	Trie *p=root;

	while(*s!='\0')
	{
		if(p->next[*s-'a']==NULL)//如果不存在則建立節點
		{
			Trie* temp=new Trie;
			for(i=0; i<MAX; i++)
			{
				temp->next[i]=NULL;
			}
			temp->isStr=false;
			p->next[*s-'a']=temp;
			p=p->next[*s-'a'];
		}
		else
		{

			p=p->next[*s-'a'];
		}


	}
	p->isStr=true; //單詞結束的地方標記此處可以構成一個單詞 


}

int search(Trie *root, const char* s) //查找某個單詞是否已經存在
{
	Trie *p=root;
	while(p!=NULL && *s!='\0')
	{
		p=p->next[*s-'a'];
		s++;
	}

	return (p!=NULL && p->isStr==true);//在單詞結束處的標記爲true時,單詞才存在  


}

void del(Trie *root)
{
	int i;
	for(i=0; i<MAX; i++)
	{
		del(root->next[i]);
	}
	delete root;
}


int main(int argc, char* argv[])
{
	int i;
	int n, m;
	char s[100];

	Trie* root=new Trie;
	for(i=0; i<MAX; i++)
		root->next[i]=NULL;

	root->isStr=false;

	cin>>n;
		
	for(i=0; i<n; i++)
	{
		cin>>s;
		insert(root, s);
	}


	while(scanf("%d",&m)!=EOF)
	{
		for(i=0; i<m; i++)
		{
			cin>>s;
			if(search(root, s)==1)
				cout<<"Yes"<<endl;
			else
				cout<<"No"<<endl;
		}
	}

	del(root);

	return 0;

	

}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章