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

poj1256(全排列stl)

时间:2016-10-16 16:55:06      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
bool cmp(char a,char b)
{
if(a>=‘A‘&&a<=‘Z‘&&b>=‘A‘&&b<=‘Z‘)
return a<b;
if(a>=‘a‘&&a<=‘z‘&&b<=‘z‘&&b>=‘a‘)
return a<b;
if(a>=‘a‘&&a<=‘z‘&&b>=‘A‘&&b<=‘Z‘)
return a<(b+32);
if(a>=‘A‘&&a<=‘Z‘&&b>=‘a‘&&b<=‘z‘)
return (a+32)<=b;//体现了A<a这一点;
}
int main()
{
int t;
char s[15];
scanf("%d",&t);
while(t--)
{
scanf("%s",s);
int n=strlen(s);
sort(s,s+n,cmp);
do {printf("%s\n",s);
}while(next_permutation(s,s+n,cmp));

}
return 0;
}

poj1256(全排列stl)

标签:

原文地址:http://www.cnblogs.com/liuzhixin-123/p/5966784.html

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