文章

111

粉丝

1

获赞

721

访问

21.1k

头像
全排列 题解:c++
P1185 中国矿业大学/北京大学机考题
发布于2026年3月8日 14:54
阅读数 67

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

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

//========================================

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发