這是一個(gè)可以列出所有排列的程式,但是執(zhí)行速度很慢,要是太多可能要花一段時(shí)間就是。
來(lái)看看例子:
以下是原始碼:
#include<iostream>
#include<cstdlib>
using namespace std;
void perm(char *ch,int a,int b);
int n;
int c=0;
int main()
{
cout << "enter a number you want to perm : "<<endl;
cin >> n;
char list[n];
cout << "and type "<< n << " alphat, for example 4 > a b c d." <<endl;
for(int i=0;i<n;i++)
cin >> list[i];
perm(list,0,n-1);
cout << c <<" type for " << n << " permutation"<<endl;
system("pause");
return 0;
}
void perm(char *ch,int a,int b)
{
if(a==b)
{
for(int i=0;i<n;i++)
cout << ch[i];
cout << endl;
c++;
}
else
for(int j=a;j<n;j++)
{
swap(ch[a],ch[j]);
perm(ch,a+1,b);
swap(ch[a],ch[j]);
}
}
這是compile過(guò)的檔案:
話說(shuō)之前這篇:
默默改進(jìn)中,可以看到成長(zhǎng),挺有趣的。