摘要: ###链式队列的基本操作(入队和出队) ?#include <stdio.h> ?#include <stdlib.h> ?#include <malloc.h> //链式队列 typedef struct LNode{ int data; struct LNode *next; }LNode, * 阅读全文
posted @ 2021-04-29 17:00 哇塞6 阅读(93) 评论(0) 推荐(0) 编辑