首页 > 学院 > 开发设计 > 正文

全排列,next-permutation 简单实现

2019-11-10 18:38:51
字体:
来源:转载
供稿:网友
#include <iostream>#include <algorithm>using namespace std;int main(){ string str; cin >> str; sort(str.begin(),str.end()); cout << str << endl; while(next_permutation(str.begin(),str.end()))cout << str << endl; return 0;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表