POJ 2136 Vertical Histogram

统计字母出现的次数,数据量小,for一遍就ok。

需要注意的时候,输出不小心容易PE哟~

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
int main()
{
    char str[100];
    int cnt[26],i,j,high,k;
    memset(cnt,0,sizeof(cnt));
    high=-1;
    for (i=0; i<4; i++)
    {
        gets(str);
        for (j=0; str[j]; j++)
        {
            if (str[j] <= 'Z' && str[j] >= 'A')
            {
                cnt[str[j]-'A']++;
                if (high < cnt[str[j]-'A'])
                    high=cnt[str[j]-'A'];
            }
        }
    }
    for (i=high; i>0; i--)
    {
        for (k=0,j=0; j<26; j++)
        {
            if (cnt[j] < i)
            {
                str[k]=' ';
                k++;
            }
            else
            {
                str[k]='*';
                k++;
            }
            if (j == 25)
            {
                str[k]='\0';
                k++;
            }
            else
            {
                str[k]=' ';
                k++;
            }
        }
        k-=2;
        while (str[k] == ' ')   k--;
        str[k+1]='\0';
        printf("%s\n",str);
    }
    printf("A B C D E F G H I J K L M N O P Q R S T U V W X Y Z\n");
}


 

你可能感兴趣的:(POJ 2136 Vertical Histogram)