河内的递归塔,访问冲突/分段错误,在dev c ++编译器上

时间:2013-03-18 18:39:44

标签: c++ pointers recursion

//以下代码生成访问冲突或分段错误 //我正在寻找河内塔的简单解决方案,我应该自己写一下 //请在下面的代码中注明缺陷,而不是给出您的精英代码:)

//使用三个堆栈递归解决河内塔问题

  #include <iostream>
  using namespace std;

  #define max 50

 typedef struct stack{ //union?
        int tos;
        int els[max]; //stack->els[1] = tos
}stack; //template stack?


void toh(int, stack * , stack *, stack *);
void display(stack * );

int main(){
    cout<<"Enter the number of discs ( <=50 ) in Tower of Hanoi\n";
    int n;
    cin>>n;
    stack *A,*B,*C;
    toh(n, A,B,C);
    system("pause");
    return 0;
}
void toh( int n, stack *A, stack *B, stack *C){
    if ( n == 1 ) {
         int temp = A->els[A->tos]; //switch case i=1,2,3 tos[i]
         A->tos -= 1; //OR stack * A, A->tos?
         C->tos += 1;
         C->els[C->tos] = temp;  
               //     push the popped item in stack C
         cout<<"A\t";
         display(A);
         cout<<"\nB\t";
         display(B);
         cout<<"\nC\t";
         display(C);
    }
    else {
         toh( n-1, A, C, B);
         toh( 1, A, B, C);
         toh( n-1, B, A, C);
    }
}
void display(stack * X){ //and not int[] stack
     cout<<"The stack elements are :\n";
          for( int i = 1; i <= X->tos; i++){//impo to start with 1 if tos = 0 init
               cout<<X->els[i];
               cout<<"\t";
          }
}

1 个答案:

答案 0 :(得分:4)

由于上面给出的微妙提示有点过于微妙,请查看以下代码:

stack *A,*B,*C;
toh(n, A,B,C);

你的指针永远不会被初始化。因此他们有未知的价值观。

最简单的解决方法是在main中的堆栈上分配它们,然后将指针传递给toh函数:

stack A,B,C;
toh(n, &A,&B,&C);