利用unordered_map做字符的统计,并很方便的可以查询
#include<iostream>
#include<unordered_map>
#include<string>
using namespace std;
int main()
{
string str;
char s,c;
unordered_map<char, int> myMp;
getline(cin, str);
s = getchar();
for(int i = 0; i < str.length(); i++)
{
//大写转小写
c = str[i];
if(c >= 'A' && c <= 'C')
{
c = c - 'A' + 'a';
}
myMp[c]++;
}
if(s >= 'A' && s <= 'C')
{
s = s - 'A' + 'a';
}
cout << myMp[s] << endl;
}