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

第一个只出现一次的字符

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

因为有大写字母所以不能只申请26空间

class Solution {
public:
    int FirstNotRepeatingChar(string str) {
        vector<int> cnt(58, 0);
        for (auto &i: str) {
            cnt[i - 'A']++;
        }
        for (int i = 0; i < str.length(); i++) {
            if (cnt[str[i] - 'A'] == 1) return i;
        }
        return -1;
    }
};

全部评论

相关推荐

冲芭芭拉鸭:你这图还挺新,偷了。
投递美团等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务