我是一个VC++的初学者,请问我应该如何用VC++解决汉诺塔的非递归实现?请大家帮帮我啊!晚辈感激不禁!!!

解决方案 »

  1.   

    我这里倒有一段用非递归法解决汉诺塔的C代码,也是找回来的,运行没问题。(不小心忘了是哪位高人写的,在此说声不好意思)不过我自己也看不太明白,希望有高手指点!/* Non-recursive solution to Towers of Hanoi */void main();#include <stdio.h>#define width (rings+1)void main()
    {
       int rings, last, next, x, z[500], s[3];   printf("How many rings?  "); scanf("%d",&rings);   for(x=1; x<=rings; x++)  /* put rings on first peg */
          z[x]=width-x;
       for(x=0; x<=2*width; x+=width)  /* set base for each peg  */
          z[x]=1000;/* if even number of rings, put first ring on second peg; if odd, on third */   if(rings%2==0)
          {
          last=1; s[2]=0; s[1]=1;
          z[width+1]=z[rings];
          }
       else
          {
          last=2; s[1]=0; s[2]=1;
          z[2*width+1]=z[rings];
          }   printf("from 1 to %d\n",last+1); s[0]=rings-1;   while(s[0]+s[1])  /* while first and second pegs aren't empty */
          {
         /* next ring to move is smaller of rings on the two pegs not moved onto last */      if(last==0)  next=z[width+s[1]]<z[2*width+s[2]]?1:2;
          if(last==1)  next=z[s[0]]<z[2*width+s[2]]?0:2;
          if(last==2)  next=z[s[0]]<z[width+s[1]]?0:1;      /* top ring of 'to' peg must be larger and an even 'distance' away */      if((z[next*width+s[next]]>z[last*width+s[last]])||
     ((z[last*width+s[last]]-z[next*width+s[next]])%2==0)) last=3-next-last;      printf("From %d to %d\n",next+1,last+1);      s[next]=s[next]-1; s[last]=s[last]+1; /* move from 'next' to 'last' peg */
          z[last*width+s[last]]=z[next*width+s[next]+1];
          }
    }