用从c++写出代码:给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。
时间: 2023-12-03 20:46:14 浏览: 78
pengjielee#blog.me#54.字符流中第一个不重复的字符1
以下是用 c++ 实现的解决方案:
```c++
#include <iostream>
#include <unordered_map>
using namespace std;
int firstUniqChar(string s) {
unordered_map<char, int> charMap;
for (char c : s) {
charMap[c]++;
}
for (int i = 0; i < s.length(); i++) {
if (charMap[s[i]] == 1) {
return i;
}
}
return -1;
}
int main() {
string s = "leetcode";
int index = firstUniqChar(s);
cout << index << endl; // 输出 0
return 0;
}
```
此代码中,我们使用了一个哈希表来记录每个字符出现的次数。然后我们遍历一遍字符串,找到第一个出现次数为 1 的字符,返回其索引即可。如果遍历完整个字符串没有找到这样的字符,就返回 -1。
阅读全文