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

POJ - 1731 Orders

时间:2014-07-01 15:09:17      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   2014   os   io   ios   

题意:排序后字符串全排列

思路:好久没水一题了

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int MAXN = 220;

char str[MAXN];

int main() {
	while (scanf("%s", str) != EOF) {
		int n = strlen(str);
		sort(str, str+n);
		printf("%s\n", str);
		while (next_permutation(str, str+n)) 
			printf("%s\n", str);
	}
	return 0;
}



POJ - 1731 Orders,布布扣,bubuko.com

POJ - 1731 Orders

标签:style   blog   2014   os   io   ios   

原文地址:http://blog.csdn.net/u011345136/article/details/36174557

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