摘要: 1 //斐波那契数列的递归和迭代实现 2 #include <stdio.h> 3 4 //迭代实现 5 int main() 6 { 7 int i; 8 int a[40]; 9 10 a[0] = 0; 11 a[1] = 1; 12 printf("%d %d ", a[0],a[1]); 阅读全文
posted @ 2020-08-28 17:50 wind_y 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef char ElemType; 5 typedef struct QNode 6 { 7 ElemType data; 8 struct QNode *next; 9 } QNode, *Qu 阅读全文
posted @ 2020-08-28 12:40 wind_y 阅读(169) 评论(0) 推荐(0) 编辑