题解 | #删除字符串中出现次数最少的字符#

删除字符串中出现次数最少的字符

http://www.nowcoder.com/practice/05182d328eb848dda7fdd5e029a56da9

#include <iostream>
#include <string>
#include <vector>
using namespace std;

int main() {
    string s;
    while(cin >> s) {
        vector<int> cnt(26, 100);
        for(auto ch : s) {
            if(cnt[ch - 'a'] == 100) {
                cnt[ch - 'a'] = 1;
            } else {
                cnt[ch - 'a'] += 1;
            }
        }
        int min_num = 100;
        for(auto item : cnt) {
            min_num = min(min_num, item);
        }
        string res = "";
        for(auto ch : s) {
            if(cnt[ch - 'a'] != min_num) res += ch;
        }
        cout << res << endl;
    }
    return 0;
}
全部评论

相关推荐

11-24 00:11
已编辑
广东工业大学 算法工程师
避雷深圳&nbsp;&nbsp;yidao,试用期&nbsp;6&nbsp;个月。好嘛,试用期还没结束,就直接告诉你尽快找下一家吧,我谢谢您嘞
牛客75408465号:笑死,直属领导和 hr 口径都没统一,各自说了一些离谱的被裁理由,你们能不能认真一点呀,哈哈哈哈哈😅😅😅
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务