题解 | #计算某字符出现次数#
计算某字符出现次数
https://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1
#include <iostream> using namespace std; #include <unordered_map> int main() { string str; char s; getline(cin,str); cin>>s; s=tolower(s); //记得统一都要小写 for(char &c:str){ c=tolower(c); } unordered_map<char,int>mp; for(char ch:str){ if(mp.find(ch)!=mp.end()){ mp[ch]++; //hash表已有该字母,计数器加1 }else{ mp[ch]=1; //hash表没有该字母,初始化计数器为1 } } cout<<mp[s]; } // 64 位输出请用 printf("%lld")