http://blog.csdn.net/hacker00011000/article/details/51218926
裴波纳契数列
1、1、2、3、5、8、13、21、34……
f1=1、f2=1、 f(n)=f(n-1)+f(n-2)(n>2)
求阶乘的递归
int f(int n) { if (n==0 || n==1) return 1; else return n*fun(n-1); }
汉塔诺问题
strlen递归解法
递归实现字符串逆序
求1+2+…+n
http://blog.csdn.net/u011237814/article/details/10161671
http://blog.csdn.net/luoweifu/article/details/42114017
全排列
https://www.cnblogs.com/joinclear/archive/2013/02/06/2908247.html
八皇后问题
求幂
在有序列表中用二分法查找符合条件的量
http://blog.csdn.net/zakachen/article/details/52345424
ACM入门算法之---递归专场
http://acm.hdu.edu.cn/showproblem.php?pid=2044
http://blog.csdn.net/zhengxu001/article/details/8020308
acm之递归题目
http://blog.csdn.net/shelly1072/article/details/51761725