You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
218 B

# 递归
* **递归**两个特点
* 调用自身
* 结束条件 【隐含:存在判断条件】
* **总结**
* 先递归后执行 : **相对倒续**输出
* 先执行后递归 : **正常顺序**输出