当前位置: 代码迷 >> 综合 >> HDU--1860--字符统计;
  详细解决方案

HDU--1860--字符统计;

热度:13   发布时间:2023-12-12 06:17:20.0

统计一个给定字符串中指定的字符出现的次数

Input

测试输入包含若干测试用例,每个测试用例包含2行,第1行为一个长度不超过5的字符串,第2行为一个长度不超过80的字符串。注意这里的字符串包含空格,即空格也可能是要求被统计的字符之一。当读到'#'时输入结束,相应的结果不要输出。

Output

对每个测试用例,统计第1行中字符串的每个字符在第2行字符串中出现的次数,按如下格式输出:
c0 n0
c1 n1
c2 n2
...
其中ci是第1行中第i个字符,ni是ci出现的次数。

Sample Input
I
THIS IS A TEST
i ng
this is a long test string
#
Sample Output
I 2
i 35
n 2
g 2 
注:第2个测试用例中,空格也是被统计的字符之一。 

思路:常规查找统计的题目.

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cstring> 
#include<queue>
using namespace std;
const int max1=10,max2=100;
char dex[max1],a[max2];
int main(){while(gets(dex)){if(!strcmp(dex,"#"))	break;//getchar();gets(a);int lendex=strlen(dex),cnt=0;while(lendex!=cnt){int ans=0;printf("%c ",dex[cnt]);for(int i=0;i<strlen(a);i++)if(dex[cnt]==a[i])	ans++;cnt++;printf("%d\n",ans);}}return 0;
}