Skip to content

Tower of Hanoi in Rust 🦀. It's a mathematical puzzle played with three rods and a number of disks of different sizes. The objective is to move all the disks from one rod to another, while following three simple rules.

paulo-granthon/rusty-tower-of-hanoi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

unsafe forbidden

Rusty Tower of Hanoi

Tower of Hanoi implementation with Rust

What even is a "Tower of Hanoi"?

The Tower of Hanoi is a mathematical game or puzzle consisting of three rods and a number of disks of various diameters, which can slide onto any rod. The puzzle begins with the disks stacked on one rod in order of decreasing size, the smallest at the top, thus approximating a conical shape. The objective of the puzzle is to move the entire stack to the last rod, obeying the following rules:

  • Only one disk may be moved at a time.
  • Each move consists of taking the upper disk from one of the stacks and placing it on top of another stack or on an empty rod.
  • No disk may be placed on top of a disk that is smaller than it.

With 3 disks, the puzzle can be solved in 7 moves. The minimal number of moves required to solve a Tower of Hanoi puzzle is 2n − 1, where n is the number of disks.

My modifications to the original puzzle

Number of disks and rods can be configured.

References & Technologies

Tower of Hanoi - https://en.wikipedia.org/wiki/Tower_of_Hanoi
Rust - https://www.rust-lang.org/
rendering (libtcod) - https://crates.io/crates/tcod

Screenshots

alt text alt text alt text alt text

About

Tower of Hanoi in Rust 🦀. It's a mathematical puzzle played with three rods and a number of disks of different sizes. The objective is to move all the disks from one rod to another, while following three simple rules.

Topics

Resources

Stars

Watchers

Forks

Languages