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
posted @ 2024-06-17 22:04
posted @ 2024-06-17 16:32
posted @ 2024-06-17 13:55
posted @ 2024-06-15 22:35
posted @ 2024-06-13 22:54
posted @ 2024-06-13 21:26