【劍指offer】面試題50:第一個只出現一次的字符

50. 第一個只出現一次的字符 在字符串 s 中找出第一個只出現一次的字符。若是沒有,返回一個單空格。 s 只包含小寫字母。web s = "abaccdeff" 返回 "b" s = "" 返回 " " map class Solution { public: char firstUniqChar(string s) { map<char, int>count;
相關文章
相關標籤/搜索