提交时间:2024-12-15 15:13:41
运行 ID: 58743
#include<bits/stdc++.h> using namespace std; int main() { int n; string s; // ① 创建原字符序列 cin>>s; n = s.length(); // ② 对序列子区间内的元素进行全排列 do{ // 对每一次排列只需要输出即可 cout<<s<<endl; }while(next_permutation(s.begin(),s.end())); return 0; }