2014年7月4日

摘要: 斐波那契数列的几种不同的算法实现: 1 #include "stdio.h" 2 #include "math.h" 3 4 5 int Fibonacci1(int n,int acc1,int acc2)//另一种新的递归方法T(n)=O(n) 6 { 7 if(n==0)retur... 阅读全文
posted @ 2014-07-04 23:57 蓝 鸟 阅读(187) 评论(0) 推荐(0) 编辑

导航