文章

14

粉丝

0

获赞

34

访问

2.3k

头像
全排列 题解:
P1185 中国矿业大学/北京大学机考题
发布于2026年3月3日 23:21
阅读数 108

使用next_permutation函数实现

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

int main(){
    string s;
    while(cin >> s){
        do{
            cout << s << endl;
        }while(next_permutation(s.begin(),s.end()));
        cout << endl;
    }
    return 0;
}

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发