Fork me on GitHub
~~~~~~~~~小喵喵已自动为您屏蔽了广告哦~~~~~~~~~
摘要: ##循环队列 #include <iostream> using namespace std; #define MAXQSIZE 100 typedef int QElemType; typedef struct { QElemType* base; int front; //头指针 int rea 阅读全文
posted @ 2020-11-13 12:20 走路带风Test 阅读(176) 评论(0) 推荐(0) 编辑
摘要: ##顺序栈 #include <iostream> using namespace std; #define MAXSIZE 100 typedef int SElemType; typedef struct { SElemType* base; SElemType* top; int stacks 阅读全文
posted @ 2020-11-13 12:15 走路带风Test 阅读(226) 评论(0) 推荐(0) 编辑
摘要: ##顺序表 #include <iostream> using namespace std; constexpr auto MAXSIZE = 100; constexpr auto ERROR = 0; constexpr auto OK = 1; typedef int ElemType; // 阅读全文
posted @ 2020-11-13 12:07 走路带风Test 阅读(260) 评论(0) 推荐(0) 编辑
Demo
Return Top