摘要:
1 #include <stdio.h> 2 #include <string.h> 3 #include <stdlib.h> 4 5 char checkFirstChar(char *stringSrc) 6 { 7 char *ptr = stringSrc; 8 int arraryHash[255]; 9 memset(arraryHash,0,sizeof(int)*255);10 while (*ptr != '\0')11 {12 arraryHash[*ptr]++;13 ptr++;14 ... 阅读全文
posted @ 2012-08-29 22:23 灬啊U 阅读(479) 评论(0) 推荐(0) 编辑