文章

93

粉丝

56

获赞

250

访问

14.9k

头像
后缀子串排序 题解:暴力,利用map自己喜欢排序的特性
P1294 上海交通大学机试题
发布于2025年3月14日 13:01
阅读数 126

#include <bits/stdc++.h>
using namespace std;

int main()
{
    string str;
    while(cin>>str)
    {
        map<string,int> mp;
        while(!str.empty())
        {
            mp[str]=1;
            reverse(str.begin(),str.end());
            str.pop_back();
            reverse(str.begin(),str.end());
        }
        map<string,int>::iterator it;
        for(it=mp.begin();it!=mp.end();it++)
        {
            cout<<it->first<<endl;
   ...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发