摘要:
##循环队列 #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
阅读(196)
评论(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
阅读(270)
评论(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
阅读(277)
评论(0)
推荐(0)

浙公网安备 33010602011771号