2019-12-30 11:25:07 +01:00
|
|
|
// hanoi tower
|
|
|
|
const (
|
2020-05-22 17:36:09 +02:00
|
|
|
num = 7
|
2019-12-30 11:25:07 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
fn main() {
|
2020-10-26 12:14:21 +01:00
|
|
|
hanoi(num, 'A', 'B', 'C')
|
2019-12-30 11:25:07 +01:00
|
|
|
}
|
|
|
|
|
2020-10-26 12:14:21 +01:00
|
|
|
fn move(n int, a string, b string) int {
|
2019-12-30 11:25:07 +01:00
|
|
|
println('Disc $n from $a to $b\...')
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2020-10-26 12:14:21 +01:00
|
|
|
fn hanoi(n int, a string, b string, c string) int {
|
2019-12-30 11:25:07 +01:00
|
|
|
if n == 1 {
|
2020-10-26 12:14:21 +01:00
|
|
|
move(1, a, c)
|
2019-12-30 11:25:07 +01:00
|
|
|
} else {
|
2020-10-26 12:14:21 +01:00
|
|
|
hanoi(n - 1, a, c, b)
|
|
|
|
move(n, a, c)
|
|
|
|
hanoi(n - 1, b, a, c)
|
2019-12-30 11:25:07 +01:00
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|