首页 > 其他 > 详细

UVA - 10098 - Generating Fast (枚举排列)

时间:2015-03-19 23:56:12      阅读:426      评论:0      收藏:0      [点我收藏+]

技术分享




思路:生成全排列,用next_permutation,注意生成之前先对那个字符数组排序。


AC代码:

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <cmath>
using namespace std;

char str[20];

int main() {
	int n;
	cin >> n;
	while(n--) {
		scanf("%s", str);
		int len = strlen(str);
		sort(str, str + len);
		do
		{
			printf("%s\n", str);
		}while(next_permutation(str, str + len));
		printf("\n");
	}
	return 0;
} 












UVA - 10098 - Generating Fast (枚举排列)

原文:http://blog.csdn.net/u014355480/article/details/44471361

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!