C 语言单链表基本操作

本文通过C语言复习数据结构,重点介绍了带头节点的单链表操作,包括节点初始化、链表初始化、插入、查找、删除节点及销毁链表等。提供了相应的头文件声明、函数实现和测试代码,但可能存在错误,需要读者注意验证。
摘要由CSDN通过智能技术生成

复习下数据结构,使用 C 语言实现了带头节点的单链表。单链表基本操作有:节点初始化、链表初始化、插入节点、查找节点、删除节点和删除链表等。下面的程序中,list.h 为头文件, 其中包含了上述基本操作的声明即链表节点的定义,lsit.c 为单链表操作函数的实现,main.c 是对单链表操作函数的测试。下面的程序可能因为笔者测试用例设计的问题而存在 bug, 请读者仔细甄别。

// Filename: list.h
// Created by lbt on 2020-9-17.
// Description: head file for list demo

#ifndef UNTITLED_LIST_H
#define UNTITLED_LIST_H

struct ListNode{
   
    int value;
    struct ListNode* next;
};

struct ListNode* InitNode(int value);
struct ListNode* InitList();
void InsertNode(struct ListNode *pre, struct ListNode *new_node);
struct ListNode* SearchByValue(int target, struct ListNode *head);
void DeleteNode(struct ListNode *node, struct ListNode *head);
void DestroyList(struct ListNode **head);

#endif //UNTITLED_LIST_H
// Filename: list.c
// Created by lbt on 2020-9-17.
// Source file for list demo

#include <malloc.h>
#include <stdlib.h>
#include "list.h"

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值