C语言数据结构队列实现-链表队列
摘要:
简单实现了下链表队列代码如下 #include<stdio.h> #include<stdlib.h> typedef struct Node { int data; struct Node * next; } Node; //入队列 void insertList(Node * head, int 阅读全文
posted @ 2024-06-17 22:04 孤灯引路人 阅读(9) 评论(0) 推荐(0) 编辑