C语言斐波那契序列三种方法

时间:2016-03-17 09:47:16
【文件属性】:

文件名称:C语言斐波那契序列三种方法

文件大小:2KB

文件格式:TXT

更新时间:2016-03-17 09:47:16

斐波那契序列

C语言斐波那契序列三种方法 #include #include #define enoughsize 100 //最大队列长度 typedef struct { int *base; //初始化的动态分配存储空间 int front; //头指针,若队列不空,指向队列头元素 int rear; //尾指针,若队列不空,指向队列尾元素的下一个位置 }SqQueue; int AddSum(int n,int *q) { int sum=0; int i; for(i=0;i


网友评论