- 博客(1)
- 收藏
- 关注
原创 【C语言】链表实现队列
【C语言】链表实现队列#include <stdio.h>#include <stdlib.h>#include <string.h>#include <malloc.h>typedef struct Node{ int data; struct Node *next;} Node, *Queue;typedef struct { Queue front; Queue rear;} LinkQueue;
2020-06-14 16:25:12
375
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人