题解 |用哈希表记录字符对应出现的位置(用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-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
猪扒已出闸:方向不够聚焦,看不出来是想找什么方向的工作
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务