Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 182 Bytes

File metadata and controls

5 lines (5 loc) · 182 Bytes

递归的特点:

  1. 递归出口,代表最小子问题
  2. 可以分解的子问题
  3. 递减n使得n像递归出口靠近
  4. 使用stack解决的问题都能用递归解决