c++N个字母,输出全排列,全部输出,急求,在线等! 20

比如输入ABC,输出ABC,ACB,BCA,BAC,CAB,CBA。本人新手,求不要那么复杂,少点字符TAT。网上搜了下,都看不懂... 比如输入ABC,输出ABC,ACB,BCA,BAC,CAB,CBA。本人新手,求不要那么复杂,少点字符TAT。网上搜了下,都看不懂 展开
 我来答
若以下回答无法解决问题,邀请你更新回答
carea
2014-11-27 · TA获得超过459个赞
知道小有建树答主
回答量:395
采纳率:65%
帮助的人:105万
展开全部
全排列的问题取决于如何找到“下一个”,然后就用同样的方法找到全部的排列
全排列这个问题其实和我们数数:11,12,13,14,15,16,17,18,19,20,21,一样的规律,只不过他的变化只要那固定的几个数自每次都出现,这就导致我们传统的连续整数会在那里丢失一部分;你如何对剩下的这些全排列中的数字看成是高氏“连续的”一列数字,对于“第一个”“最小的数字”找到它的“下一个”,然后用同样的方法找到戚卖散再“下一个”,一直到“最后一个”,你就正好把全排列找到了。
下面只利用next_permutation从“第一个”开始,修改内容到“下一个”,知道所有的都遍历完,不再有”下一个“为止配芦
[cpp] view plaincopyprint?
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <vector>

using namespace std;

template<typename T>
void print(T begin,T end)
{
while(begin != end)
{
cout<<*begin++<<" ";
}
cout<<endl;
};

void TestArray()
{
char chs[] = {'1', '2', '3', '4', '5'};
int count = sizeof(chs)/sizeof(char);

print(chs,chs+count);// print the first
//next_permutation 会改变元素的内容,让其成为“下一个排列”,
//返回值表示是否有下一个排列,排列按照全排列的升序进行。
//与之对应的是prev_permutation()
while(next_permutation(chs+0, chs + count))//print the next until there is no next
{
print(chs,chs+ count);
}
}

int main(int argc, char *argv[])
{
TestArray();

return 0;
}

输出如下:
1 2 3 4
1 2 4 3
1 3 2 4
1 3 4 2
1 4 2 3
1 4 3 2
2 1 3 4
2 1 4 3
2 3 1 4
2 3 4 1
2 4 1 3
2 4 3 1
3 1 2 4
3 1 4 2
3 2 1 4
3 2 4 1
3 4 1 2
3 4 2 1
4 1 2 3
4 1 3 2
4 2 1 3
4 2 3 1
4 3 1 2
4 3 2 1
请按任意键继续. .
http://blog.csdn.net/calmreason/article/details/41124407
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式