POJ 1731 Orders(STL运用)
Posted llguanli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ 1731 Orders(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运用)的主要内容,如果未能解决你的问题,请参考以下文章