5

可能重复:
生成具有所有字符排列的字符串

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

#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;
        }
    }
}
4

1 回答 1

1

The function is correct but you are not calling it correctly.

perm(a,0,3);

should be

perm(a,0,2);

Why?

Your for loop:

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

goes till n, so n should be a valid index.

Works fine

于 2012-10-03T14:39:00.327 回答