https://leetcode-cn.com/problems/first-unique-character-in-a-string/
给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。
案例:
s = "leetcode"
返回 0.
s = "loveleetcode",
返回 2.
用数组来记录每一个字符出现的次数,然后第二次遍历的时候,还是从这个字符串的首字符开始,如果发现他的数目是1,那么就返回下标值即可
public:
int firstUniqChar(string s) {
vector<int> ch(26,0);
for(auto i:s)
{
ch[i - 'a']++;
}
for(int i=0; i<s.size(); i++)
{
if(ch[s[i]-'a'] == 1)
return i;
}
return -1;
}
};