IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 链表编程(C语言) -> 正文阅读

[数据结构与算法]链表编程(C语言)


在这里插入图片描述

1.带头结点单链表

结点类型描述

typedef struct LNode {
    ElemType data;
    struct LNode *next;
} LNode, *LinkList;

基本操作定义

LinkList list_init();

void list_head_insert(LinkList L, ElemType e);

void list_tail_insert(LinkList L, ElemType e);

void list_insert(LinkList L, ElemType e, int position);//insert a new node at the nth position

void list_delete(LinkList L, int position);//delete the node of the nth position

void list_modify(LinkList L, ElemType e, int position);//modify the node of the nth position

ElemType list_find(LinkList L, int position);//find the data of the nth position

void list_display(LinkList L);

int list_length(LinkList L);

void list_empty(LinkList L);//wipe data(except head node)

void list_destroy(LinkList *L);//release all the space(include head node)

基本操作实现

LinkList list_init() {
    LinkList L = (LinkList) malloc(sizeof(LNode));

    L->data = 0;
    L->next = NULL;
    return L;
}

void list_head_insert(LinkList L, ElemType e) {
    LNode *new_node = (LNode *) malloc(sizeof(LNode));

    new_node->data = e;
    new_node->next = L->next;
    L->next = new_node;
}

void list_tail_insert(LinkList L, ElemType e) {
    LNode *new_node = (LNode *) malloc(sizeof(LNode));
    LNode *tail = L;

    while (tail->next) {
        tail = tail->next;
    }
    tail->next = new_node;
    new_node->data = e;
    new_node->next = NULL;
}

void list_insert(LinkList L, ElemType e, int position) {
    LNode *new_node = (LNode *) malloc(sizeof(LNode));
    LNode *p = L;

    while (--position) {
        p = p->next;
    }
    new_node->data = e;
    new_node->next = p->next;
    p->next = new_node;
}

void list_delete(LinkList L, int position) {
    LNode *p = L, *q = L->next;

    while (--position) {
        p = p->next;
        q = q->next;
    }
    p->next = q->next;
    free(q);
}

void list_modify(LinkList L, ElemType e, int position) {
    LNode *p = L;

    while (position--) {
        p = p->next;
    }
    p->data = e;
}

ElemType list_find(LinkList L, int position) {
    LNode *p = L;

    while (position--) {
        p = p->next;
    }
    return p->data;
}

void list_display(LinkList L) {
    LNode *p = L->next;

    if (!p) {
        printf("This is a empty single linked list.\n");
    } else {
        printf("All data are: ");
        while (p) {
            printf("%d%c", p->data, (p->next == NULL) ? 46 : 32);
            p = p->next;
        }
        printf("\n");
    }
}

int list_length(LinkList L) {
    LNode *p = L->next;
    int length = 0;

    while (p) {
        length++;
        p = p->next;
    }
    return length;
}

void list_empty(LinkList L) {
    LNode *p;

    while (L->next) {
        p = L->next;
        L->next = p->next;
        free(p);
    }
}

void list_destroy(LinkList *L) {
    LNode *head = *L, *tmp;

    *L = NULL;
    while (head) {
        tmp = head->next;
        free(head);
        head = tmp;
    }
}

其他操作(交集,差集,合并,逆置,排序)


2.不带头结点单链栈

结点类型描述

typedef struct LNode {
    int data;
    struct LNode *next;
} LNode, *LinkStack;

基本操作定义

LinkStack stack_init();

void stack_push(LinkStack *S, int e);

int stack_pop(LinkStack *S);

void stack_destroy(LinkStack *S);

基本操作实现

LinkStack stack_init() {
    LinkStack S = NULL;
    return S;
}

void stack_push(LinkStack *S, int e) {
    LNode *new_node = (LNode *)malloc(sizeof(LNode));

    new_node->data = e;
    new_node->next = *S;
    *S = new_node;
}

int stack_pop(LinkStack *S) {
    LNode *p = *S;
    int val = p->data;

    *S = p->next;
    free(p);
    return val;
}

void stack_destroy(LinkStack *S) {
    LNode *p = *S;

    while (*S) {
        *S = p->next;
        free(p);
    }
}

3.循环单链表

结点类型描述

typedef struct LNode {
    ElemType data;
    struct LNode *next;
} LNode, *LinkList;

基本操作定义

LinkList list_init();

void list_head_insert(LinkList L, ElemType e);

void list_tail_insert(LinkList L, ElemType e);

void list_insert(LinkList L, ElemType e, int position);//insert a new node at the nth position

void list_delete(LinkList L, int position);//delete the node of the nth position

void list_modify(LinkList L, ElemType e, int position);//modify the node of the nth position

ElemType list_find(LinkList L, int position);//find the data of the nth position

void list_display(LinkList L);

int list_length(LinkList L);

void list_empty(LinkList L);//wipe data(except head node)

void list_destroy(LinkList *L);//release all the space(include head node)

基本操作实现

LinkList list_init() {
    LinkList L = (LinkList) malloc(sizeof(LNode));

    L->data = 0;
    L->next = L;
    return L;
}

void list_head_insert(LinkList L, ElemType e) {
    LNode *new_node = (LNode *) malloc(sizeof(LNode));

    new_node->data = e;
    new_node->next = L->next;
    L->next = new_node;
}

void list_tail_insert(LinkList L, ElemType e) {
    LNode *new_node = (LNode *) malloc(sizeof(LNode));
    LNode *tail = L;

    while (tail->next != L) {
        tail = tail->next;
    }
    tail->next = new_node;
    new_node->data = e;
    new_node->next = L;
}

void list_insert(LinkList L, ElemType e, int position) {
    LNode *new_node = (LNode *) malloc(sizeof(LNode));
    LNode *p = L;

    while (--position) {
        p = p->next;
    }
    new_node->data = e;
    new_node->next = p->next;
    p->next = new_node;
}

void list_delete(LinkList L, int position) {
    LNode *p = L, *q = L->next;

    while (--position) {
        p = p->next;
        q = q->next;
    }
    p->next = q->next;
    free(q);
}

void list_modify(LinkList L, ElemType e, int position) {
    LNode *p = L;

    while (position--) {
        p = p->next;
    }
    p->data = e;
}

ElemType list_find(LinkList L, int position) {
    LNode *p = L;

    while (position--) {
        p = p->next;
    }
    return p->data;
}

void list_display(LinkList L) {
    if (L->next == L) {
        printf("This is a empty circular single linked list.\n");
    } else {
        LNode *p = L->next;

        printf("All data are: ");
        while (p != L) {
            printf("%d%c", p->data, (p->next == L) ? 46 : 32);
            p = p->next;
        }
        printf("\n");
    }
}

int list_length(LinkList L) {
    LNode *p = L->next;
    int length = 0;

    while (p != L) {
        length++;
        p = p->next;
    }
    return length;
}

void list_empty(LinkList L) {
    LNode *p;

    while (L->next != L) {
        p = L->next;
        L->next = p->next;
        free(p);
    }
}

void list_destroy(LinkList *L) {
    LNode *head = (*L)->next, *tmp;

    while (head != *L) {
        tmp = head->next;
        free(head);
        head = tmp;
    }
    free(head);
    *L = NULL;
}

4.循环双链表

结点类型描述

typedef struct DNode {
    ElemType data;
    struct DNode *prior, *next;
} DNode, *DLinkList;

基本操作定义

DLinkList list_init();

void list_insert(DLinkList L, ElemType e, int position);//insert a new node at the nth position

void list_delete(DLinkList L, int position);//delete the node of the nth position

void list_display(DLinkList L);

void list_empty(DLinkList L);//wipe data(except head node)

void list_destroy(DLinkList *L);//release all the space(include head node)

基本操作实现

DLinkList list_init() {
    DLinkList L = (DLinkList) malloc(sizeof(DNode));

    L->data = 0;
    L->next = L;
    L->prior = L;
}

void list_insert(DLinkList L, ElemType e, int position) {
    DNode *new_node = (DNode *)malloc(sizeof(DNode));
    DNode *p = L, *q = L->next;

    while (--position) {
        p = p->next;
        q = q->next;
    }
    new_node->data = e;
    new_node->next = q;
    new_node->prior = p;
    p->next = new_node;
    q->prior = new_node;
}

void list_delete(DLinkList L, int position) {
    DNode *p = L, *q = L->next;

    while (--position) {
        p = p->next;
        q = q->next;
    }
    p->next = q->next;
    q->next->prior = p;
    free(q);
}

void list_display(DLinkList L) {
    if (L->next == L) {
        printf("This is a empty circular double linked list.\n");
    } else {
        DNode *p = L->next;
        printf("All data are: ");
        while (p != L) {
            printf("%d%c", p->data, (p->next == L) ? 46 : 32);
            p = p->next;
        }
        printf("\n");
    }
}

void list_empty(DLinkList L) {
    DNode *p;

    while (L->next != L) {
        p = L->next;
        L->next = p->next;
        free(p);
    }
    L->prior = L;
}

void list_destroy(DLinkList *L) {
    DNode *head = (*L)->next, *tmp;

    while (head != *L) {
        tmp = head->next;
        free(head);
        head = tmp;
    }
    free(head);
    *L = NULL;
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-02-19 01:25:36  更:2022-02-19 01:27:53 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 15:35:37-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码