1. 程式人生 > >HDU 1219 AC Me(小技巧)

HDU 1219 AC Me(小技巧)

不要傻傻的用26個case或者if去做

不要傻傻的用26個case或者if去做

不要傻傻的用26個case或者if去做


換個思路,開一個大小26的int陣列,從第一個元素開始分別代表'a','b'.....'z'的個數

ch[i]-'a'就是對應的元素,然後計數即可



#include<stdio.h>
#include<string.h>


char ch[100005];
int main(void)
{

  while (gets(ch) != NULL) {
    int letter[27] = {0};
    for (int i = 0; ch[i]!='\0'; i++) {
      letter[ch[i] - 'a']++;
    }

    char a = 'a';
    for (int i = 0; i < 26; i++) {
      printf("%c:%d\n", a++, letter[i]);
    }
    printf("\n");
  }
  return 0;
}