摘要: #include#include#include#define MaxSize 100typedef struct Queue{ int front; int rear; int *queue;}Queue,SqQueue;int InitQueue(SqQueue *Q){ ... 阅读全文
posted @ 2015-03-27 21:02 图米大侠 阅读(366) 评论(0) 推荐(0)