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

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

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;
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
10-05 10:13
已编辑
HHHHaos:让这些老登来现在秋招一下,简历都过不去
点赞 评论 收藏
分享
10-13 17:47
门头沟学院 Java
wulala.god:图一那个善我面过,老板网上找的题库面的
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务