c语言实现有头单向链表
摘要:
#include <stdio.h> #include<stdlib.h> #include<string.h> //采用有头链表,头节点不存数据,所以数据操作都从头节点所指的下一节点开始,这样就不会误操作到头节点。 typedef int data_t; typedef struct linkli 阅读全文
posted @ 2023-03-02 13:04 干饭的鸭鸭怪 阅读(32) 评论(0) 推荐(0)
2023年3月2日 #
posted @ 2023-03-02 13:04 干饭的鸭鸭怪 阅读(32) 评论(0) 推荐(0)
2023年3月1日 #
posted @ 2023-03-01 08:55 干饭的鸭鸭怪 阅读(66) 评论(0) 推荐(0)
2023年2月28日 #
posted @ 2023-02-28 20:15 干饭的鸭鸭怪 阅读(220) 评论(0) 推荐(0)
posted @ 2023-02-28 19:39 干饭的鸭鸭怪 阅读(114) 评论(0) 推荐(0)
posted @ 2023-02-28 11:32 干饭的鸭鸭怪 阅读(3070) 评论(0) 推荐(0)