摘要: #include #include typedef int ElemType; typedef struct Queue *QPtrl; typedef QPtrl List; struct Queue { ElemType data; QPtrl next; List Front, Rear; //分别是出队和入队的指针 }; //初始化 QPtrl InitQue... 阅读全文
posted @ 2017-10-24 15:23 禹某 阅读(2941) 评论(0) 推荐(0) 编辑