标签:scan hash png code hashtable supper http nbsp 水题
水题,又是一道hash题。
#include<iostream> #include<cctype> using namespace std; int hashtable[26]= {0}; int main() { char c; while(scanf("%c",&c)!=EOF) { if(isalpha(c)) {//是字母? if(isupper(c))//大写字母转小写字母 c+=32; hashtable[c-‘a‘]++; } } int max = 0,pos = -1; for(int i = 0; i < 26; ++i) if(max < hashtable[i]) { max = hashtable[i]; pos = i; } printf("%c %d",pos+‘a‘,max); return 0; }
标签:scan hash png code hashtable supper http nbsp 水题
原文地址:https://www.cnblogs.com/keep23456/p/12332373.html