Tower of Hanoi Problem¶
In both merge sort and binary tree construction, we break the original problem into two subproblems, each half the size of the original problem. However, for the Tower of Hanoi, we adopt a different decomposition strategy.
Question
We are given three pillars, denoted as A
, B
, and C
. Initially, pillar A
has \(n\) discs, arranged from top to bottom in ascending size. Our task is to move these \(n\) discs to pillar C
, maintaining their original order (as shown in the figure below). The following rules apply during the movement:
- A disc can be removed only from the top of a pillar and must be placed on the top of another pillar.
- Only one disc can be moved at a time.
- A smaller disc must always be on top of a larger disc.
We denote the Tower of Hanoi problem of size \(i\) as \(f(i)\). For example, \(f(3)\) represents moving \(3\) discs from pillar A
to pillar C
.
Consider the base cases¶
As shown in the figure below, for the problem \(f(1)\)—which has only one disc—we can directly move it from A
to C
.
For \(f(2)\)—which has two discs—we rely on pillar B
to help keep the smaller disc above the larger disc, as illustrated in the following figure:
- First, move the smaller disc from
A
toB
. - Then move the larger disc from
A
toC
. - Finally, move the smaller disc from
B
toC
.
The process of solving \(f(2)\) can be summarized as: moving two discs from A
to C
with the help of B
. Here, C
is called the target pillar, and B
is called the buffer pillar.
Decomposition of subproblems¶
For the problem \(f(3)\)—that is, when there are three discs—the situation becomes slightly more complicated.
Since we already know the solutions to \(f(1)\) and \(f(2)\), we can adopt a divide-and-conquer perspective and treat the top two discs on A
as a single unit, performing the steps shown in the figure below. This allows the three discs to be successfully moved from A
to C
.
- Let
B
be the target pillar andC
the buffer pillar, then move the two discs fromA
toB
. - Move the remaining disc from
A
directly toC
. - Let
C
be the target pillar andA
the buffer pillar, then move the two discs fromB
toC
.
Essentially, we decompose \(f(3)\) into two \(f(2)\) subproblems and one \(f(1)\) subproblem. By solving these three subproblems in sequence, the original problem is solved, indicating that the subproblems are independent and their solutions can be merged.
From this, we can summarize the divide-and-conquer strategy for the Tower of Hanoi, illustrated in the figure below. We divide the original problem \(f(n)\) into two subproblems \(f(n-1)\) and one subproblem \(f(1)\), and solve these three subproblems in the following order:
- Move \(n-1\) discs from
A
toB
, usingC
as a buffer. - Move the remaining disc directly from
A
toC
. - Move \(n-1\) discs from
B
toC
, usingA
as a buffer.
For each \(f(n-1)\) subproblem, we can apply the same recursive partition until we reach the smallest subproblem \(f(1)\). Because \(f(1)\) is already known to require just a single move, it is trivial to solve.
Code implementation¶
In the code, we define a recursive function dfs(i, src, buf, tar)
which moves the top \(i\) discs from pillar src
to pillar tar
, using pillar buf
as a buffer:
As shown in the figure below, the Tower of Hanoi problem can be visualized as a recursive tree of height \(n\). Each node represents a subproblem, corresponding to a call to dfs()
, Hence, the time complexity is \(O(2^n)\), and the space complexity is \(O(n)\).
Quote
The Tower of Hanoi originates from an ancient legend. In a temple in ancient India, monks had three tall diamond pillars and \(64\) differently sized golden discs. They believed that when the last disc was correctly placed, the world would end.
However, even if the monks moved one disc every second, it would take about \(2^{64} \approx 1.84×10^{19}\) —approximately 585 billion years—far exceeding current estimates of the age of the universe. Thus, if the legend is true, we probably do not need to worry about the world ending.