1、汉诺塔非递归算法C语言实现#include#include#define CSZL 10#define FPZL 10typedef struct hanoiint n;char x,y,z;hanoi;typedef struct Stackhanoi *base,*top;int stacksize;Stack;int InitStack(Stack *S)S-base=(hanoi *)malloc(CSZL*sizeof(hanoi);if(!S-base)return 0;S-top=S-base;S-stacksize=CSZL;return 1;int PushStack(Sta
2、ck *S,int n,char x,char y,char z)if(S-top-S-base=S-stacksize)S-base=(hanoi *)realloc(S-base,(S-stacksize+FPZL)*sizeof(hanoi);if(!S-base)return 0;S-top=S-base+S-stacksize;S-stacksize+=FPZL;S-top-n=n;S-top-x=x;S-top-y=y;S-top-z=z;S-top+;return 1;int PopStack(Stack *S,int *n,char *x,char *y,char *z)if(
3、S-top=S-base)return 0;elseS-top-;*n=S-top-n;*x=S-top-x;*y=S-top-y;*z=S-top-z;return 1;int EmptyStack(Stack *S)if(S-base=S-top)return 1;elsereturn 0;int i=1;void Move(char x,char z)printf(nntt第%d部,从%c移到%c。,i+,x,z);int main()int n;char x,y,z;Stack *S;S=(Stack *)malloc(sizeof(Stack);if(!S)return 0;if(!
4、InitStack(S)return 0;printf(nntt请输入汉诺塔的初始盘子数量以及轴的名称:);scanf(%d%c%c%c,&n,&x,&y,&z);if(!PushStack(S,n,x,y,z)return 0;while(!EmptyStack(S)if(!PopStack(S,&n,&x,&y,&z)break;if(n=1)Move(x,z);elseif(!PushStack(S,n-1,y,x,z)break;if(!PushStack(S,1,x,y,z)break;if(!PushStack(S,n-1,x,z,y)break;free(S-base);S-base=NULL;S-top=NULL;S-stacksize=0;return 0;