关闭页面特效

08 2021 档案

摘要:#include<cstdio> #include <iostream> using namespace std; int Fib(int n) { if (n == 0) return 0; else if (n == 1) return 1; else return Fib(n - 1) + F 阅读全文
posted @ 2021-08-10 09:38 Mexcellent 阅读(58) 评论(0) 推荐(0) 编辑
摘要:#include<cstdio> #include <iostream> #define MAxsize 5 using namespace std; typedef struct { int Data[MAxsize]; int front; int rear; }SqQueue; bool In 阅读全文
posted @ 2021-08-10 09:19 Mexcellent 阅读(18) 评论(0) 推荐(0) 编辑
摘要:1 #include<cstdio> 2 #include<cstdlib> 3 #include <iostream> 4 #define Maxsize 50 5 using namespace std; 6 typedef struct 7 { 8 char Data[Maxsize]; 9 阅读全文
posted @ 2021-08-07 10:47 Mexcellent 阅读(36) 评论(0) 推荐(0) 编辑

关注
跳至底部
点击右上角即可分享
微信分享提示