数据结构——链式队列

1 #include<iostream> 2 #include<stdlib.h> 3 using namespace std; 4 5 typedef int ElemType; 6 typedef int Status; 7 #define OK 1 8 #define ERROR 0 9 #define MAXSIZE 10 10 11 //结点定义
相关文章
相关标签/搜索