1 Star 0 Fork 1

tzj/算法笔记

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tire树.txt 1.45 KB
一键复制 编辑 原始数据 按行查看 历史
tu 提交于 2023-04-04 20:45 . 第一次整体提交
最长公共前缀
hdu 1251
#include<iostream>
using namespace std;
int tree[1000000][26];
int num[1000000]={0};
char word[11];
int pos=1;
void Insert()
{
int c=0;
for(int i=0;word[i];i++)
{
int n=word[i]-'a';
if(trie[c][n]==0)
{
trie[c][n]=pos++;
}
c=trie[c][n];
num[c]++;
}
}
int Query()
{
int c=0;
for(int i=0;word[i];i++)
{
int n=word[i]-'a';
if(trie[c][n]==0)
return 0;
c=trie[c][n];
}
return num[c];
}
int main()
{
while(gets(word))
{
if(word[0]==NULL)
break;
Insert();
}
while(gets(word))
{
cout<<Find()<<endl;
}
return 0;
}
acwing 835 trie字符串统计
#include<iostream>
using namespace std;
const int N=1e5+10;
int idx=0,trie[N][26],cnt[N];
char str[N];
void Insert(char str[])
{
int p=0;
for(int i=0;str[i];i++)
{
int c=str[i]-'a';
if(!trie[p][c])
trie[p][c]=++idx;
p=trie[p][c];
}
cnt[p]++;
}
int Query(char str[])
{
int p=0;
for(int i=0;str[i];i++)
{
int c=str[i]-'a';
if(!trie[p][c])
return 0;
p=trie[p][c];
}
return cnt[p];
}
int main()
{
int n;
cin>>n;
while(n--)
{
char x;
cin>>x>>str;
if(x == 'I')
Insert(str);
else
printf("%d\n",Query(str));
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/tu-zhenjin/algorithm-notes.git
git@gitee.com:tu-zhenjin/algorithm-notes.git
tu-zhenjin
algorithm-notes
算法笔记
master

搜索帮助