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

大话数据结构之栈的链的应用--递归值菲涅数列

时间:2015-03-10 23:01:06      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:

 

#include<iostream>
using namespace std;

#define OK 1
#define TRUE 1
#define FALSE 0
#define ERROR 0

typedef int status;//返回的状态值
//波斐数列,某项的值为它的前两项的和

int fbi(int n)
{
	if(n<2)
	{
		if(n==0)
			return 0;
		else
			return 1;
	}
	return fbi(n-1)+fbi(n-2);
}

int main()
{
	for(int i=0;i<10;i++)
		cout<<fbi(i)<<‘ ‘;
	cout<<endl;

	system("pause");
	return 1;

}

  

大话数据结构之栈的链的应用--递归值菲涅数列

标签:

原文地址:http://www.cnblogs.com/yanliang12138/p/4328470.html

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