摘要: 1、什么是算法? 算法(Algorithm):一个计算过程,解决问题的方法 2、复习:递归 递归的两个特点:(1) 调用自身 (2)结束条件 def func1(x): print(x) func1(x-1) def func2(x): if x>0: print(x) func2(x+1) def 阅读全文
posted @ 2017-03-06 23:50 willpower-chen 阅读(771) 评论(0) 推荐(0) 编辑