Go语言实现汉诺塔算法

2018-09-22 01:15

阅读:490

  hano.go

   package main import ( bufio fmt os strconv ) func main() { fmt.Print(输入要移动的盘子数:) reader := bufio.NewReader(os.Stdin) lool: data, _, _ := reader.ReadLine() n, err := strconv.Atoi(string(data)) if err != nil { fmt.Println(err) goto lool } hanoi(n, A, B, C) } func hanoi(n int, a, b, c byte) { if n > 1 { hanoi(n-1, a, c, b) fmt.Printf(%c-->%c\n, a, c) hanoi(n-1, b, a, c) } else { fmt.Printf(%c-->%c\n, a, c) } }

  以上所述就是本文的全部内容了,希望大家能够喜欢。


评论


亲,登录后才可以留言!