码迷,mamicode.com
首页 > 其他好文 > 详细

1042 字符统计

时间:2020-02-19 18:53:37      阅读:81      评论:0      收藏:0      [点我收藏+]

标签: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;
}

技术图片

 

1042 字符统计

标签:scan   hash   png   code   hashtable   supper   http   nbsp   水题   

原文地址:https://www.cnblogs.com/keep23456/p/12332373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!