int firstUniqChar(char* s) {
int len=strlen(s);
int abc[26]={0};
int i=0;
while (i<len){
abc[s[i]-'a']++;
i++;
}
i=0;
while (i<len){
if (abc[s[i]-'a']==1){
return i;
}
i++;
}
return -1;
}
http://blog.csdn.net/vlin_hao/article/details/52596431
同样也是用字母表存出字母频数。
第一次写的时候,比较笨,没有想到可以利用i来传递下标,所以在字母表数组里存下标,过程比较麻烦。