1. 程式人生 > >C++ Leetcode初級演算法之字串中的第一個唯一字元

C++ Leetcode初級演算法之字串中的第一個唯一字元

給定一個字串,找到它的第一個不重複的字元,並返回它的索引。如果不存在,則返回 -1。

案例:

s = “leetcode”
返回 0.

s = “loveleetcode”,
返回 2.

注意事項:您可以假定該字串只包含小寫字母。

class Solution {
public:
    int firstUniqChar(string s) {
        map<char,int> mp;
        for(auto c : s)
            mp[c]++;
        for(int i=0;i<s.length();i++)
            if(mp[s[i]] == 1)
                return i;
        return -1;
    }
};