文章

13

粉丝

120

获赞

1

访问

6.4k

头像
容器 好用,爱用
P1415 华中科技大学机试题
发布于2024年3月15日 12:14
阅读数 453

#include <iostream>

#include <string>

#include <vector>

#include <map>

using namespace std;

int main()

{

    string str;

    while (cin >> str)

    {

        map<char, vector<int>> m;

        map<int, char> keys;

        int index = 0;

        for (int i = 0; i < str.length(); i++)

        {

            m[str[i]].push_back(i);

            if (m[str[i]].size() == 1)

                keys[index++] = str[i];

        }

        for (auto i = keys.begin(); i != keys.end(); i++)

        {

            if (m[i->second].size() > 1)

       ...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发