标签:code span print turn 函数 eof ems 运行 mem
题意:给一句英语句子,求从a-z各出现了几次。
主要是给自己提一个醒for循环中要少调用函数,函数运行需要时间,再加上for循环的时间,很可能时间超限。
1 #include<stdio.h> 2 #include<string.h> 3 #define M 100010 4 int main(){ 5 char str[M]; 6 int count[M]; 7 while(gets(str)){ 8 memset(count,0,sizeof(count)); 9 int k=strlen(str);//非常重要 10 for(int i=0;i<k;i++){ 11 if(str[i]>=‘a‘&&str[i]<=‘z‘) count[str[i]-‘a‘]++; 12 } 13 for(int i=0;i<26;i++) 14 printf("%c:%d\n",‘a‘+i,count[i]); 15 printf("\n"); 16 } 17 return 0; 18 }
标签:code span print turn 函数 eof ems 运行 mem
原文地址:http://www.cnblogs.com/Leonard-/p/6249993.html