hdu_1671 - 字典树

一道非常简单的字典树,一开始没有写析构函数,结果居然超内存了!!!悲剧。。。

话说哥的写法还是很标准的~~

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
using namespace std;
const int ax='0';
struct tree
{
bool has;
tree *p[10];
tree()
{
for(int i=0;i<10;i++)
{
p[i]=NULL;
}
has=false;
}
~tree()
{
for(int i=0;i<10;i++)
{
if(p[i]!=NULL)
{
delete p[i];
}
}
}
}*head,*now;
int T,w;
string a,b,c;
vector<string>vs;
bool insert(string x)
{
for(int i=0;i<x.length();i++)
{
if(i==0)
{
if(head->p[x[i]-ax]==NULL)
{
head->p[x[i]-ax]=new tree;
now=head->p[x[i]-ax];
}
else
{
now=head->p[x[i]-ax];
if(now->has==true)
{
return false;
}
}
}
else
{
if(now->p[x[i]-ax]==NULL)
{
now->p[x[i]-ax]=new tree;
now=now->p[x[i]-ax];
}
else
{
now=now->p[x[i]-ax];
if(now->has==true)
{
return false;
}
}
}
}

for(int i=0;i<10;i++)
{
if(now->p[i]!=NULL)
{
return false;
}
}
now->has=true;
return true;
}
bool fuck()
{
for(int i=0;i<vs.size();i++)
{
if(!insert(vs[i]))
{
return false;
}
}
return true;
}
int main()
{
cin>>T;
for(int tt=1;tt<=T;tt++)
{
cin>>w;
vs.clear();
head=new tree;
for(int i=1;i<=w;i++)
{
cin>>a;
vs.push_back(a);
}
if(fuck())
{
cout<<"YES"<<endl;
}
else
{
cout<<"NO"<<endl;
}
delete head;
}
return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值