用于字符的递归置换生成器

时间:2012-10-01 08:14:41

标签: c++ algorithm recursion permutation

  

可能重复:
  generate strings with all permutation of character

我是c ++的初学者,我真的需要你的帮助。我正在使用递归进行排列程序。这是我的代码,但输出很奇怪,有相同的数字重复多次和空格。我无法找出问题是什么,或者我需要更多地添加smth。请帮我。这是我的代码:

#include <iostream>
using namespace std;
#define swap(x,y,t)  ((t)=(x), (x)=(y), (y)=(t))
void perm(char *list, int i, int n);

int main(){
    char a[4]={'a','b','c'};
    perm(a,0,3);
    //cout<<a<<endl;    
    return 0;
}

void perm(char *list, int i, int n){
    int j, temp;
    if (i==n){
        for (j=0; j<=n; j++)
            printf("%c", list[j]);
        printf("     ");
    }
    else {
        for (j=i; j<=n; j++){
            swap(list[i],list[j],temp);
            perm(list,i+1,n);
            swap(list[i],list[j],temp);
            cout<<list<<endl;
        }
    }
}

1 个答案:

答案 0 :(得分:1)

该功能正确但您没有正确调用它。

perm(a,0,3);

应该是

perm(a,0,2);

为什么?

你的for循环:

for (j=i; j<=n; j++){

直到n,因此n应该是有效的索引。

Works fine