kobellover


私信TA

用户名:kobellover

访问量:3471

签 名:

等  级
排  名 3012
经  验 2066
参赛次数 0
文章发表 27
年  龄 0
在职情况 学生
学  校 扬州大学
专  业

  自我简介:

TA的其他文章

#include <iostream>

#include <stack>

using namespace std;

stack<int> s[3];


void move(int x, int y,int n) {

int tmp = s[x-1].top();

s[x-1].pop();

s[y-1].push(tmp);

cout <<"Move "<<n<<" from "<<x<<" to "<<y << endl;

}


void hanoi(int A, int B, int C, int n) {

if (n == 1) {

move(A, C,n);

return ;

}

hanoi(A, C, B, n - 1);

move(A, C,n);

hanoi(B, A, C, n - 1);

}


int main() {

int n;

cin >> n;

for (int i = n; i >= 1; i--) {

s[0].push(i);

}

hanoi(1, 2, 3, n);

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »