题解 | #第一个只出现一次的字符#

第一个只出现一次的字符

http://www.nowcoder.com/practice/1c82e8cf713b4bbeb2a5b31cf5b0417c

可以使用暴力求解:

class Solution {
public:
    int FirstNotRepeatingChar(string str) {
        for(int i =0; i < str.length(); ++i){
            bool hasSeem = false;
            for(int j = 0; j < str.length(); ++j){
                if(i !=j && str[i] == str[j]){
                    hasSeem = true;
                    break;
                }
            }
            if(!hasSeem) return i;
        }
        return -1;
    }
};

使用 map 也行:

class Solution {
public:
    int FirstNotRepeatingChar(string str) {
        map<char, int> data;
        for(int i =0; i < str.length(); ++i){
            ++data[str[i]];
        }
        for(int i = 0; i < str.length(); ++i){
            if(data[str[i]] == 1) return i;
        }
        return -1;
    }
};

或者是使用 hash

class Solution {
public:
    int FirstNotRepeatingChar(string str) {
        unordered_map<char, int> data;
        for(int i =0; i < str.length(); ++i){
            ++data[str[i]];
        }
        for(int i = 0; i < str.length(); ++i){
            if(data[str[i]] == 1) return i;
        }
        return -1;
    }
};
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-26 15:46
已编辑
字节国际 电商后端 24k-35k
点赞 评论 收藏
分享
爱看电影的杨桃allin春招:我感觉你在炫耀
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务