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
阅读全文
摘要:#include<cstdio> #include <iostream> #define MAxsize 5 using namespace std; typedef struct { int Data[MAxsize]; int front; int rear; }SqQueue; bool In
阅读全文
摘要: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
阅读全文