yshda

导航

 

2020年3月29日

摘要: count=0 def han(n,src,dst,mid): global count if n==1: print("{}:{}->{}".format(1,src,dst)) count+=1 else: han(n-1,src,mid,dst) print("{}:{}->{}".forma 阅读全文
posted @ 2020-03-29 15:01 yshda 阅读(124) 评论(0) 推荐(0)