c语言实现有头单向链表
摘要:
#include <stdio.h> #include<stdlib.h> #include<string.h> //采用有头链表,头节点不存数据,所以数据操作都从头节点所指的下一节点开始,这样就不会误操作到头节点。 typedef int data_t; typedef struct linkli 阅读全文
posted @ 2023-03-02 13:04 干饭的鸭鸭怪 阅读(19) 评论(0) 推荐(0) 编辑