首页 > 代码库 > hdu1381 Crazy Search(hash map)
hdu1381 Crazy Search(hash map)
题目意思:
给出一个字符串和字串的长度,求出该字符串的所有给定长度的字串的个数(不相同)。
题目分析:
此题为简单的字符串哈hash map问题,可以直接调用STL里的map类。map<string,int> snum;
AC代码:
[cpp] view plaincopyprint?
- #include<iostream>
- #include<string>
- #include<map>
- using namespace std;
- int main()
- {
- int t,n,nc;
- cin>>t;
- while(t--){
- string s;
- map<string,int> snum;
- cin>>n>>nc>>s;
- int k=0;
- int len=s.length();
- for(int i=0;i<=len-n;i++){
- string ss=s.substr(i,n);
- if(snum[ss]==0){
- k++;
- snum[ss]=1;
- }
- }
- cout<<k<<endl;
- if(t>1) cout<<endl;
- }
- return 0;
- }
hdu1381 Crazy Search(hash map)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。