hdu1251 字典树or map

Posted %%%%%

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu1251 字典树or map相关的知识,希望对你有一定的参考价值。

一道字典树的题,不过看起来用map更为简单

传送门

题意: 给出一堆字符串构成一个字典,求字典里以某字符串为前缀的字符串有几个

思路: 输入字符串时把字符串的前缀全部存进map并标记次数 查询时直接输出就可以了

AC代码:

 1 #include "stdio.h"
 2 #include "map"
 3 #include "string"
 4 #include "string.h"
 5 #include "iostream"
 6 
 7 using namespace std;
 8 
 9 int main()
10 {
11     map<string,int>M;
12     char ss[100],s[100];
13     int k;
14     while(gets(ss))
15     {
16         int l = strlen(ss);
17         if(l==0) break;
18         s[0] = \0,k=0;
19         for(int j=0; j<l; j++)
20         {
21             s[k++]=ss[j];
22             s[k] = \0;
23             M[s]++;
24         }
25     }
26     while(gets(s))
27         cout<<M[s]<<endl;
28     return 0;
29 }

 

以上是关于hdu1251 字典树or map的主要内容,如果未能解决你的问题,请参考以下文章

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

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

hdu 1251 统计难题(字典树)

hdu 1251 统计难题(字典树)

HDU 1251 统计难题(字典树)

hdu-1251(字典树)