字符串中的第一个唯一字符

字符串中的第一个唯一字符

CategoryDifficultyLikesDislikes
algorithmsEasy (54.73%)548-

Tags

hash-table | string

Companies

amazon | bloomberg | microsoft

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

示例 1:

1
2
输入: s = "leetcode"
输出: 0

示例 2:

1
2
输入: s = "loveleetcode"
输出: 2

示例 3:

1
2
输入: s = "aabb"
输出: -1

提示:

  • 1 <= s.length <= 105
  • s 只包含小写字母

Discussion | Solution

解法

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Solution {
public:
    /**
    * ## 解题思路
    * * 遍历2次,
    * * 第一次使用map统计各个字符出现的次数;
    * * 第二次返回第一个字符次数小于2的字符序号i;
    */
    int firstUniqChar(string s) {
        int res = 0;
        map<char, int> charCount;
        for(char c: s) {
            charCount[c]++;
        }
        for(int i=0; i<s.length(); i++) {
            if (charCount[s[i]]<2) {
                return i;
            }
        }
        return -1;
    }
};
updatedupdated2024-08-252024-08-25