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

POJ 1731 Orders(STL运用)

时间:2017-05-05 15:27:35      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:stack   sort   int   iostream   地址   art   har   ble   targe   

题目地址: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运用)

标签:stack   sort   int   iostream   地址   art   har   ble   targe   

原文地址:http://www.cnblogs.com/llguanli/p/6813041.html

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