标签:style blog io color ar os for sp strong
描述
现在给你一个由小写字母组成字符串,要你找出字符串中出现次数最多的字母,如果出现次数最多字母有多个那么输出最小的那个。
3 abcd bbaa jsdhfjkshdfjksahdfjkhsajkf
a a j
#include<iostream> #include <string.h> using namespace std; int main() { int n; int max,t; char ch[1011]; cin>>n; while(n--){ int c[27] = {0}; cin>>ch; max =0; t = strlen(ch)-1; for(int i = 0;i<=t;i++) c[ch[i]-‘a‘]++; for(int j =0;j<=26;j++) { if(c[j]>c[max]) max = j; } cout<<char(max +‘a‘)<<endl; } return 0; }
标签:style blog io color ar os for sp strong
原文地址:http://www.cnblogs.com/imwtr/p/4069534.html