hdoj 1251 字典树

代码:

#include <stdio.h>
#define  MAX    26
typedef struct TrieNode
{   
 int nCount;    
 struct TrieNode *next[MAX];
}TrieNode;
TrieNode Memory[1000000];
int allocp = 0;

TrieNode *CreateTrieNode()
{
    int i;
    TrieNode *p;
    p = &Memory[allocp++];
    p->nCount = 1;
    for(i = 0 ; i < MAX ; i++)
    {       
  p->next[i] = NULL;
    }   
 return p;
}

void InsertTrie(TrieNode **pRoot , char *s){
    int i , k;
    TrieNode *p;
    if(!(p = *pRoot))
    {       
  p = *pRoot = CreateTrieNode();
    }   
 i = 0;
    while(s[i])
    {       
  k = s[i++] - ‘a‘;      
  if(p->next[k])
   p->next[k]->nCount++;
        else
            p->next[k] = CreateTrieNode();
        p = p->next[k];
    }
}

int SearchTrie(TrieNode **pRoot , char *s)
{   
 TrieNode *p;
    int i , k;
    if(!(p = *pRoot))
    {
        return 0;
    }   
 i = 0;
    while(s[i])
    {       
  k = s[i++] - ‘a‘;
  if(p->next[k] == NULL)
   return 0;
        p = p->next[k];
    }
    return p->nCount;
}

int main()
{
 char a[11];
 TrieNode *root=NULL;
 while(gets(a)&&a[0])
 {
        CreateTrieNode();
        InsertTrie(&root,a);
 }
 while(gets(a))
 {
        int ans=SearchTrie(&root , a);
  printf("%d\n",ans);
 }
    return 0;
}

hdoj 1251 字典树

时间: 2024-10-27 19:05:22

hdoj 1251 字典树的相关文章

HDU 1251 字典树入门

统计难题 Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131070/65535 K (Java/Others)Total Submission(s): 17177    Accepted Submission(s): 7410 Problem Description Ignatius最近遇到一个难题,老师交给他很多单词(只有小写字母组成,不会有重复的单词出现),现在老师要他统计出以某个字符串为前缀的单词数量(单词本身也是自己的前

hdu 1251(字典树)

统计难题 Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131070/65535 K (Java/Others)Total Submission(s): 29183    Accepted Submission(s): 11454 Problem Description Ignatius最近遇到一个难题,老师交给他很多单词(只有小写字母组成,不会有重复的单词出现),现在老师要他统计出以某个字符串为前缀的单词数量(单词本身也是自己的

hdu 1251 字典树的应用

这道题看了大神的模板,直接用字典树提交的会爆内存,用stl 里的map有简单有快 #include <iostream> #include <map> #include <cstring> #include <string> using namespace std; int main() { int i, len; char str[10]; map<string, int> m; while( gets(str) ) { len = strle

HDU ACM 1251字典树(Trie)

简单的字典树题,首先简历字典树,在查找. #include<iostream> using namespace std; struct Tri { int v; Tri* child[26]; } root; void Init() { root.v=0; for(int i=0;i<26;i++) { root.child[i]=NULL; } } void CreateDic(char* str) { Tri* p; int j; p=&root; while(*str!=N

hdu 1251 字典树模板题 ---多串 查找单词出现次数

这道题题目里没有给定数据范围 我开了2005  疯狂的WA 然后开了50000, A掉  我以为自己模板理解错  然后一天没吃饭,饿得胃疼还是想着把这题A掉再去吃,谁知竟然是这样的问题,,,呵呵~~~ 只是记录下这道题学到的方法吧: for(rt = 0; *s; rt = nxt, ++s) { nxt=tree[rt][*s-tb]; if(!nxt) { nxt=tree[rt][*s-tb]=top; memset(tree[top],0,sizeof(tree[top])); top+

hdoj 1251 统计难题(字典树)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1251 思路分析:该问题要求求出以某个字符串为前缀的单词数目,通过使用字典树,在字典树中添加count记录通过该结点的单词数目即可: 查找时找到前缀的最后一个单词的结点的count值即为所求: 代码如下: #include <cstdio> #include <cstring> #include <iostream> using namespace std; const in

hdoj 1251 统计难题(经典字典树)

Let the Balloon Rise Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 84414    Accepted Submission(s): 31834 Problem Description Contest time again! How excited it is to see balloons floating ar

HDOJ/HDU 1251 统计难题(字典树啥的~Map水过)

Problem Description Ignatius最近遇到一个难题,老师交给他很多单词(只有小写字母组成,不会有重复的单词出现),现在老师要他统计出以某个字符串为前缀的单词数量(单词本身也是自己的前缀). Input 输入数据的第一部分是一张单词表,每行一个单词,单词的长度不超过10,它们代表的是老师交给Ignatius统计的单词,一个空行代表单词表的结束.第二部分是一连串的提问,每行一个提问,每个提问都是一个字符串. 注意:本题只有一组测试数据,处理到文件结束. Output 对于每个提

(字典树)HDU - 1251 统计难题

原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=1251 题意:先给定一些单词构成字典,然后再查一些在字典中以一些字母串为前缀的单词有几个. 分析:很基础很普通的字典树题目,但是用动态的字典树会超时,所以要用静态的字典树. 代码: 1 #include <set> 2 #include <map> 3 #include <list> 4 #include <cmath> 5 #include <queue&