特点:
调用自身
结束条件
def func1(x): if x>0: func1(x-1) print(x)func1(10)
顺序查找
二分查找
常用算法
原文:http://www.cnblogs.com/liumj0305/p/8088092.html