摘要: #include<stdio.h>#include<stdlib.h>typdef int QElemtype;typedef struct QNode{ QElemtype data; struct QNode *next;}QNode,*QueuePtr;typedef struct Linke 阅读全文
posted @ 2017-04-13 20:43 zhaohuaxi 阅读(81) 评论(0) 推荐(0)