我一直致力于实现堆算法的递归版本。这是伪代码的链接:http ://en.wikipedia.org/wiki/Heap%27s_algorithm
在我进入递归部分之前,一切都很顺利。我知道我还没有放入交换元素,但我还没有走到那一步。运行失败而没有显示错误,直到我使用 gcc 调试器告诉我存在分段错误。这是我的代码:
#include <string>
#include <iostream>
using namespace std;
string* permute(int n, string array[2]){
if (n==1){
return array;
}
else{
for(int c=1; c<=n;c++){
permute(n--,array);
}
}
}
int main() {
string array[2]={"a","b"};
permute(2,array);
return 0;
}