C语言数据结构队列实现-链表队列

简单实现了下链表队列代码如下 #include<stdio.h> #include<stdlib.h> typedef struct Node { int data; struct Node * next; } Node; //入队列 void insertList(Node * head, int

posted on 2024-06-17 22:04  孤灯引路人  阅读(3)  评论(0编辑  收藏  举报