标签:哈希 第一个 red 代码 auto 出现 ble solution uniq
如题目所示
class Solution {
public:
char firstUniqChar(string s) {
if(s.empty()) {
return ‘ ‘;
}
unordered_map<char, int> table;
for(auto ch: s) {
table[ch]++;
}
for(auto ch: s) {
if(table[ch] == 1) {
return ch;
}
}
return ‘ ‘;
}
};
标签:哈希 第一个 red 代码 auto 出现 ble solution uniq
原文地址:https://www.cnblogs.com/MartinLwx/p/14395932.html