摘要:
使用struct结构体构造node链表,在link中声明node head 和 node tail 来命名两个结构体的头和尾链表 这里介绍链表的初始化和链表的清除操作 /* 构造链表的结构体 */ #include <stdio.h> typedef struct node{ int val; st 阅读全文
摘要:
这里我们介绍两种队列的形式, 第一种队列当数据插入到文件的最后,就认为这个文件已经满,将不再插入数据,这里使用head 和 tail表示要插入和提取的数据位置 queue队列的声明文件 02queue.h /* queue队列 */ #include <stdio.h> #ifndef __O2QU 阅读全文