第一个只出现一次的字符

统计字符串中每个字符出现的次数,然后再从左到右遍历字符串,找出出现次数为1的字符串。

class Solution {
public:
    int FirstNotRepeatingChar(string str) {
        if(!str.size()) return -1;
        map counter;
        for(int i = 0;i

你可能感兴趣的:(第一个只出现一次的字符)