全排列的实现
Posted 2014>
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了全排列的实现相关的知识,希望对你有一定的参考价值。
1.递归实现
#include <iostream> #include<stdio.h> #include<string.h> using namespace std; int sum=0; int Isswap(char a[],int start,int end) { for(int i=start;i<end;i++) { if(a[i]==a[end]) return 0; } return 1; } void swap (char a[],int b,int c) { char temp=a[b]; a[b]=a[c]; a[c]=temp; } void quanpai(char a[],int start ,int end) { if (start==end) { for(int i=0;i<=end;i++) cout<<a[i]; cout<<endl; sum++; return; } else { for(int j=start;j<=end;j++) { if(Isswap(a,start,j)) { swap(a, start, j); quanpai(a, start + 1, end); swap(a, j, start); } } } } int main() { char zifu[100]; cin >>zifu; int n=strlen(zifu); quanpai(zifu,0,n-1); cout<<sum<<endl; return 0; }
以上是关于全排列的实现的主要内容,如果未能解决你的问题,请参考以下文章