摘要: #include #include #include #include //队列长度自定义 #define ASIZE 1001 #define MAX_INT 2147483647 typedef struct quque { int data[ASIZE]; int front; int rear; }Queue; //空0,满-1,正常 1 int notE... 阅读全文
posted @ 2018-03-13 14:41 Oran 阅读(473) 评论(0) 推荐(0) 编辑