码迷,mamicode.com
首页 > 其他好文 > 详细

递归递归

时间:2018-01-20 22:43:59      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:tar   序列   problem   logs   lan   ack   details   二分   highlight   

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

 

递归递归

标签:tar   序列   problem   logs   lan   ack   details   二分   highlight   

原文地址:https://www.cnblogs.com/cdsj/p/8321974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!