leetcode 387. 字符串中的第一个唯一字符

给定一个字符串 s ,找到 它的第一个不重复的字符,并返回它的索引 。如果不存在,则返回 -1 。

输入: s = “loveleetcode”
输出: 2

class Solution {
public:
    int firstUniqChar(string s) {
        int countArray[26] = {0};

        for(int i = 0; i < s.size(); i++)
        {
            countArray[s[i]-'a']++;
        }
        
        for(int j = 0; j < s.size();j++)
        {
            if(countArray[s[j]-'a'] == 1)
            {
                return j;
            }
        }
        return -1;
    }
};

你可能感兴趣的:(leetcode,leetcode,算法)