单链表(有头)

#include <stdio.h>
#include <stdlib.h>

typedef int elem_t;

struct node_info {
        elem_t data;
        struct node_info *next;
};

static void init_head(struct node_info *head)
{
        head->data = 0;
        head->next = head;
}

static void list_add(struct node_info *head,
                elem_t data)
{
        struct node_info *node = (struct node_info*)malloc(sizeof(struct node_info));
        node->data = data;

        node->next = head->next;
        head->next = node;
}

static void list_add_tail(struct node_info *head,
                elem_t data)
{
        struct node_info *node = (struct node_info*)malloc(sizeof(struct node_info));
        node->data = data;

        //瀵绘.?捐〃?€?.?涓..?
        struct node_info *cur = head->next;
        for (; cur->next != head; cur = cur->next) {}

        node->next = head;
        cur->next = node;
}

static void list_for_each(struct node_info *head,
                void (*todo)(struct node_info *))
{
        struct node_info *cur = head->next;
        for (; cur != head; cur = cur->next) {
                todo(cur);
        }
}

static void list_del(struct node_info *head,
                elem_t data)
{
        struct node_info *back = head;
        struct node_info *cur = head->next;
        for (; cur != head;) {
                if (cur->data == data) {
                        back->next = cur->next;
                        free(cur);
                        cur = back->next;
                } else {
                        back = cur;
                        cur = cur->next;
                }
        }
}

void list_destroy(struct node_info *head)
{
        struct node_info *cur = head->next;

        for (; cur != head; cur = head->next) {
                head->next = cur->next;
                free(cur);
        }
}

#define LIST_LEN 10

static void print(struct node_info *node)
{
        printf("%d ", node->data);
}

int main()
{
        struct node_info head;
        init_head(&head);

        size_t i = 0;
        for (i = 0; i < LIST_LEN; i++) {
                list_add(&head, i);
                list_add_tail(&head, i);
        }

        list_del(&head, 0);

        list_for_each(&head, print);
        printf("\n");

        list_destroy(&head);

        return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值