-
Notifications
You must be signed in to change notification settings - Fork 0
/
387.字符串中的第一个唯一字符.cpp
75 lines (70 loc) · 1.18 KB
/
387.字符串中的第一个唯一字符.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
* @lc app=leetcode.cn id=387 lang=cpp
*
* [387] 字符串中的第一个唯一字符
*
* https://leetcode.cn/problems/first-unique-character-in-a-string/description/
*
* algorithms
* Easy (56.73%)
* Likes: 749
* Dislikes: 0
* Total Accepted: 433.4K
* Total Submissions: 763.9K
* Testcase Example: '"leetcode"'
*
* 给定一个字符串 s ,找到 它的第一个不重复的字符,并返回它的索引 。如果不存在,则返回 -1 。
*
*
*
* 示例 1:
*
*
* 输入: s = "leetcode"
* 输出: 0
*
*
* 示例 2:
*
*
* 输入: s = "loveleetcode"
* 输出: 2
*
*
* 示例 3:
*
*
* 输入: s = "aabb"
* 输出: -1
*
*
*
*
* 提示:
*
*
* 1 <= s.length <= 10^5
* s 只包含小写字母
*
*
*/
#include <string>
#include <vector>
using namespace std;
// @lc code=start
class Solution {
public:
int firstUniqChar(string s) {
vector<int> count(26, 0);
for (char c : s) {
count[c - 'a']++;
}
for (int i = 0; i < s.size(); i++) {
if (count[s[i] - 'a'] == 1) {
return i;
}
}
return -1;
}
};
// @lc code=end