题解 |用哈希表记录字符对应出现的位置(用vector保存)

找位置

https://www.nowcoder.com/practice/e3b2cc44aa9b4851bdca89dd79c53150

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <map>
#include <vector>
using namespace std;
map<char, vector<int>>hashmap;
int main() {
    char a[100];
    while (scanf("%s", a) != EOF) {
        for (int i = 0; a[i] != '\0'; i++) {
            hashmap[a[i]].push_back(i);
        }
        for (int i = 0; a[i] != '\0'; i++) {
            if (hashmap[a[i]].size() > 1 && hashmap[a[i]][0] != 9999) {
                printf("%c:%d", a[i], hashmap[a[i]][0]);
                for (int j = 1; j < hashmap[a[i]].size(); j++) {
                    printf(",%c:%d", a[i], hashmap[a[i]][j]);
                }
                hashmap[a[i]][0] = 9999;
                printf("\n");
            }
        }
    }
    return 0;
}

全部评论

相关推荐

头像
11-21 11:39
四川大学 Java
是红鸢啊:忘了还没结束,还有字节的5k 违约金
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务