网页学习体会

  • 首页
  • 个人博客
您的位置: 首页  >  IT文章  >  Python

Python

分类: IT文章 • 2024-03-04 17:38:57

def hanoi(n, a, b, c):
	if(n == 1):
		print(a, '-->', c)
		return
	hanoi(n - 1, a, c, b)
	print(a, '-->', c)
	hanoi(n - 1, b, a, c)

# Output of hanoi(3, 'A', 'B', 'C'):
# A --> C
# A --> B
# C --> B
# A --> C
# B --> A
# B --> C
# A --> C

相关推荐

  • 动态解析冒泡排序—Python
  • python单元测试
  • 一张图认识Python(附基本语法总结)
  • python多线程多进程
  • python数据库备份
  • Python-自动化测试面试
  • python中的继承、多继承、超继承
  • Cannot set up a python SDK Python3.7. The SDK seems inval...  
  • 【Python第31课到42课】
  • python 知识
  • git SSL certificate problem: unable to get local issuer certificate
  • redis结合springboot 无法注入redisTemplate问题
    网站免责声明 网站地图 最新文章 用户隐私 版权申明
本站所有数据收集于网络,如果侵犯到您的权益,请联系网站进行下架处理。   

Copyright © 2018-2021   Powered By 网页学习体会    备案号:   粤ICP备20002247号