字典树的操作

#include <iostream>
#include <cstdlib>
#include <string>
using namespace std;
#define MAX 26
typedef struct _Trie
{
  int num;
  struct _Trie *next[MAX];
}Trie,*PTrie;
PTrie root;
void InsertTrie(string str)
{
	int len=str.length();
	int i,j,pos;
	PTrie p=root;
	PTrie q;
	for(i=0;i<len;i++)
	{
	  pos=str[i]-'a';
	  if(p->next[pos]==NULL)
	  {
		  q=(PTrie)malloc(sizeof(Trie));
		  q->num=1;
		  for(int j=0;j<MAX;j++)
		  {
			  q->next[j]=NULL;
		  }
		  p->next[pos]=q;
		  p=p->next[pos];
	  }
	  else
	  {
		  p->next[pos]->num++;
		  p=p->next[pos];
	  
	  }
	  
	}
	p->num=0;
}
//
int FindTrie(string str)
{
  int i,pos;
  int len=str.length();
  PTrie p=root,q;

  for(i=0;i<len;i++)
  {
    pos=str[i]-'a';
	if(p->next[pos]==NULL)
	{
	  return -1;//代表没有这样的前缀
	}
	else
	{
		p=p->next[pos];
	}
  }
  return p->num;
}
int main()
{
	root=(PTrie)malloc(sizeof(Trie));
	root->num=1;
	for(int i=0;i<MAX;i++)
	{
		root->next[i]=NULL;
	}
	string str1="abc";
	string str2="abcd";
	string str3="abd";
	string str4="b";
	string str5="bcd";
	string str6="efg";
	string hig="hig";
	InsertTrie(str1);
	InsertTrie(str2);
	InsertTrie(str3);
	InsertTrie(str4);
	InsertTrie(str5);
	InsertTrie(str6);
	if(FindTrie("ab")==-1)
		cout<<"没有以这个为前缀的字符串"<<endl;
	else
		cout<<"以这个子串为前缀的字符串个数为"<<FindTrie("ab")<<endl;



 return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值