在字符串 s 中找出第一个只出现一次的字符。如果没有,返回一个单空格。 s 只包含小写字母。
示例:
s = “abaccdeff”
返回 “b”
s = “”
返回 " "
class Solution {
public:
char firstUniqChar(string s) {
unordered_map<char, int> t;
for(char c: s) t[c]++; //统计个数
for(char c: s)
if(t[c]== 1) return c;
return ' ';
}
};
时间复杂度O(n)
空间复杂度O(K) K=256