tower_of_hanoi: Demonstrate the Tower of Hanoi puzzle in R

View source: R/tower_of_hanoi.R

tower_of_hanoiR Documentation

Demonstrate the Tower of Hanoi puzzle in R

Description

This function uses the recursive algorithm to solve the Tower of Hanoi puzzle, and demonstrates the game in animation.

Usage

tower_of_hanoi(n = 7)

Arguments

n

an integer indicating the number of disks on the rot.

Details

This function was written by Linlin Yan <linlin.yan@cos.name> in a Chinese forum (See 'References') to show the usage of recursive algorithm.

Author(s)

Linlin Yan <linlin.yan@cos.name>

References

Original code: https://d.cosx.org/d/101199

About the Tower of Hanoi: https://en.wikipedia.org/wiki/Tower_of_Hanoi

See Also

barplot

Examples

## Not run: 
tower_of_hanoi(7)

## End(Not run)

yihui/fun documentation built on Jan. 28, 2023, 2:29 p.m.