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

POJ 1731 Orders(STL运用)

时间:2014-07-30 17:37:54      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:c语言   算法   编程   poj   stl   

题目地址:POJ 1731

这题可以直接用STL函数做,很轻松。。next_permutation函数很给力。。

代码如下:

#include <algorithm>
#include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <queue>
#include <cmath>
#include <stack>
#include <map>
using namespace std;
char s[300];
int main()
{
    int len, i, n;
    while(scanf("%s",s)!=EOF)
    {
        len=strlen(s);
        sort(s,s+len);
        puts(s);
        while(next_permutation(s,s+len))
        {
            puts(s);
        }
    }
    return 0;
}


POJ 1731 Orders(STL运用),布布扣,bubuko.com

POJ 1731 Orders(STL运用)

标签:c语言   算法   编程   poj   stl   

原文地址:http://blog.csdn.net/scf0920/article/details/38301805

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