摘要: #define QUE_SIZE 1000 typedef struct que { int front; int rear; int node[QUE_SIZE]; }Que; int QueInit(Que *p); int QueIsEmpty(Que *p); int QueIsFull(Que *p); int QueAddRear(Que *p, int n); int Q... 阅读全文
posted @ 2016-04-22 16:36 SLOOP 阅读(133) 评论(0) 推荐(0)