【正经题解】字母全排列
2024-02-21 17:37:41
发布于:浙江
41阅读
0回复
0点赞
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
string s;
cin >> s;
// 输出初始排列
cout << s << endl;
// 生成下一个排列,直到没有更多排列为止
while (next_permutation(s.begin(), s.end())) {
cout << s << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个