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

第一个只出现一次的字符

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;
    }
};

全部评论

相关推荐

巧克力1:双选会不如教室宣讲会
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务