队列
hey超级巨星
这个作者很懒,什么都没留下…
展开
-
C语言C++链队列数据结构的软件实现代码
/* 链队列 @hey超级巨星 */ #include <stdio.h> #include<stdlib.h> #include <iostream> using namespace std; #define ERROR 0 #define OK 1 #define True 1 #define False 0 #define MAXSIZE 20 typed...原创 2020-02-09 13:49:34 · 163 阅读 · 0 评论 -
C语言C++顺序数组循环队列的软件实现代码
/* 顺序循环队列 */ #include <stdio.h> #include<stdlib.h> #include <iostream> using namespace std; #define ERROR 0 #define OK 1 #define True 1 #define False 0 #define MAXSIZE 20 typedef int...原创 2020-02-09 12:29:04 · 201 阅读 · 0 评论