码迷,mamicode.com
首页 > 其他好文 > 详细

全排列(最快速next permutation)

时间:2015-03-20 21:51:18      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
char a[210];
int main()
{
    while(scanf("%s",a)!=EOF)
    {
        int len = strlen(a);
        sort(a, a+len);
        cout << a << endl;
        int k = 1;
        while(next_permutation(a, a+len))
        {
            cout << a << endl;
            k++;
//            cout << k << endl;
        }
        cout << k << endl;
    }
    string str;
    cin >> str;
    sort(str.begin(),str.end());
    cout << str << endl;
    while (next_permutation(str.begin(), str.end()))
        cout << str << endl;
    return 0;
}
View Code

 

全排列(最快速next permutation)

标签:

原文地址:http://www.cnblogs.com/tyx0604/p/4354574.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!