漢諾塔

Problem

Only one disk may be moved at a time.
Each move consists of taking the upper disk from one of the rods and sliding it onto another rod, on top of the other disks that may already be present on that rod.
No disk may be placed on top of a smaller disk.

Solution

#include <iostream>
#include <stack>
using namespace std;

void hanio_tower(int n, char src, char bridge, char dst)
{

    if(n == 0){
        return;
    }

    if(n == 1){
        cout << "move " << n << " from " << src << " to " << dst << endl;
        return;
    }
    else{
        hanio_tower(n - 1, src, dst, bridge);
        cout << "move " << n << " from " << src << " to " << dst << endl;
        hanio_tower(n - 1, bridge, src, dst);
    }
}

int main(int argc, char* argv[])
{
    hanio_tower(3, 'a', 'b', 'c'); 
    return 0;
}

Output

move 1 from a to b
move 2 from a to c
move 1 from b to c
move 3 from a to b
move 1 from c to a
move 2 from c to b
move 1 from a to b
move 4 from a to c
move 1 from b to c
move 2 from b to a
move 1 from c to a
move 3 from b to c
move 1 from a to b
move 2 from a to c
move 1 from b to c


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章