C语言实现 单链表 处理任意类型数据

企业开发中,C语言链表不仅仅存储基本数据类型,应对任意的void data均可实现增删改查。在前面的一篇文章中,已经分享了单向链表、双向链表、有头节点和无头节点等链表对基本数据的处理。以下主要分析对复杂类型数据的处理,是以无有效头节点的单向链表为例。

1 结构体构建Node节点

typedef struct Node //链表节点定义
{
    void *data;        //节点的数据域,存址
    struct Node *next; //指针域,保存下一个节点的地址,指向下一个节点
} Node;

2 结构体构建链表

typedef struct LinkList //链表
{
    Node firstNode; //链表的首个节点
    int size;       //链表长度
} List;

3 链表初始化

List *initLinkList() //链表初始化
{
    List *list = (List *)malloc(sizeof(List));//向堆区申请内存
    if (list == NULL)
        return NULL;
    list->firstNode.data = NULL;//初始化
    list->firstNode.next = NULL;
    list->size = 0;
    return list;
}

4 创建单个数据节点

Node *createSingleNode(void *data) //创建节点
{
    Node *node = (Node *)malloc(sizeof(Node));
    node->data = data;
    node->next = NULL;
    return node;
}

5.1 头插数据到链表


Node *insertSingleNodeByHead(void *data, List *list) //单链表有表头头插法
{
    if (data == NULL || list == NULL)//空指针判断
        return NULL;
    Node *node = createSingleNode(data);
    node->next = list->firstNode.next;
    list->firstNode.next = node;
    list->size++;//链表容量+1
    return node;
}

5.2 尾插数据到链表

Node *insertSingleNodeByTail(void *data, List *list) //单链表尾插法
{
    if (data == NULL || list == NULL)
        return NULL;
    Node *node = createSingleNode(data);
    Node *pointer = &(list->firstNode);//拿到首节点的地址
    while (pointer->next)
        pointer = pointer->next;
    pointer->next = node;//此时pointer是最后一个节点
    node->next = NULL;//node成为最后一个节点
    list->size++;
    return node;
}

5.3 根据索引插入数据到链表

Node *insertSingleNodeByIndex(void *data, int index, List *list)//根据索引index插入数据data至链表中
{
    if (data == NULL || list == NULL)
        return NULL;
    if (index < 0 || index > list->size) // 0索引为无有效数据的firstNode
        index = list->size;              //非法索引时,统一尾插处理
    Node *node = createSingleNode(data);
    Node *firstN = &list->firstNode;//拿到首节点地址
    for (int i = 0; i < index; i++)
        firstN = firstN->next;
    node->next = firstN->next;
    firstN->next = node;
    list->size++;
    return node;
}

6 删除指定节点


typedef struct Student//后续的测试用例,假定链表存储该数据类型
{
    int id;
    char name[20];
} Student;

int compare(void *s1, void *s2) //为Student类型数据设计compare比较函数
{
    Student *stu1 = (Student *)s1;
    Student *stu2 = (Student *)s2;
    if (strcmp(stu1->name, stu2->name) == 0 && stu1->id == stu2->id)
        return 1;
    return 0;
}
int deleteSingleNode(void *deleteData, List *list, int (*compare)(void *, void *)) //单链表删除节点
{
    Node *pointer = &(list->firstNode);
    while (pointer->next)
    {
        if (compare(pointer->next->data, deleteData)) // pointer->next->data而不是pointer->next
        {//pointer->next即为需要删除节点
            Node *deleteNode = pointer->next;
            pointer->next = pointer->next->next;
            free(deleteNode); //释放删除节点占用的堆内存
            deleteNode = NULL;
            list->size--;
            return 1;
        }
        pointer = pointer->next;
    }
    return 0; //删除失败返回0
}

7 遍历链表节点

void printfList(void *data) //为方便函数回调,写此函数方便提供程序的可扩展性
{
    Student *stu = (Student *)data;
    printf("name:%s-id:%d--->\t", stu->name, stu->id );
}
void listNode(List *list, void (*printfList)(void *)) //节点遍历
{
    if (list == NULL)
        return;
    Node *pointer = list->firstNode.next; //默认头节点未保留有效数据,list->firstNode.next为第一个有效节点
    while (pointer)
    {
        printfList(pointer->data);//传入的是pointer->data,不是pointer
        pointer = pointer->next;
    }
    puts("\n");
}

8 程序测试与运行结果

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
    Student stu[] = {
        {1, "jakes1"},
        {2, "jakes2"},
        {3, "jakes3"},
        {4, "jakes4"},
        {5, "jakes5"},
        {6, "jakes6"},
        {7, "jakes7"},
        {8, "jakes8"},
    };
    Student ss = {6, "sd"};
    List *list = initLinkList();
    for (int i = 0; i < 3; i++)
        insertSingleNodeByHead(&stu[i], list); //头插节点
    listNode(list, printfList);
    for (int i = 3; i < 6; i++)
        insertSingleNodeByTail(&stu[i], list); //尾插节点
    listNode(list, printfList);
    for (int i = 6; i < 8; i++)
        insertSingleNodeByIndex(&stu[i],2,list); //根据索引插入
    listNode(list, printfList);
    for (int i = 2; i < 4; i++)
        deleteSingleNode(&stu[i], list, compare); //删除节点
    listNode(list, printfList);                   //遍历节点
    return 0;
}

运行结果如下:

  • 4
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
### 回答1: 单链表是一种常用的数据结构,它由一个节点序列组成,每个节点包含两部分:数据域和指针域。数据域存储节点的数据,指针域指向下一个节点。 下面是用C语言实现单链表的创建、插入、删除、查找和显示的代码: 1. 创建单链表 ```c #include <stdio.h> #include <stdlib.h> struct node { int data; struct node *next; }; struct node *create_list(int n) { int i; struct node *head, *p, *q; head = (struct node *)malloc(sizeof(struct node)); head->next = NULL; q = head; for (i = 0; i < n; i++) { p = (struct node *)malloc(sizeof(struct node)); printf("请输入第%d个节点的值: ", i+1); scanf("%d", &p->data); q->next = p; q = p; } q->next = NULL; return head; } ``` 2. 插入节点 ```c struct node *insert_node(struct node *head, int pos, int data) { int i; struct node *p, *q; p = head; for (i = 0; i < pos-1 && p != NULL; i++) { p = p->next; } if (p == NULL) { printf("插入位置无效.\n"); return head; } q = (struct node *)malloc(sizeof(struct node)); q->data = data; q->next = p->next; p->next = q; return head; } ``` 3. 删除节点 ```c struct node *delete_node(struct node *head, int pos) { int i; struct node *p, *q; p = head; for (i = 0; i < pos-1 && p != NULL; i++) { p = p->next; } if (p == NULL || p->next == NULL) { printf("删除位置无效.\n"); return head; } q = p->next; p->next = q->next; free(q); return head; } ``` 4. 查找节点 ```c int search_node(struct node *head, int data) { int pos = 0; struct node *p = head->next; while (p != NULL) { pos++; if (p->data == data) { return pos; } p = p->next; } return -1; // 没找到 } ``` 5. 显示链表 ```c void display_list(struct node *head) { struct node *p = head->next; while (p != NULL) { printf("%d ", p->data); p = p->next; } printf("\n"); } ``` 完整代码如下: ```c #include <stdio.h> #include <stdlib.h> struct node { int data; struct node *next; }; struct node *create_list(int n) { int i; struct node *head, *p, *q; head = (struct node *)malloc(sizeof(struct node)); head->next = NULL; q = head; for (i = 0; i < n; i++) { p = (struct node *)malloc(sizeof(struct node)); printf("请输入第%d个节点的值: ", i+1); scanf("%d", &p->data); q->next = p; q = p; } q->next = NULL; return head; } struct node *insert_node(struct node *head, int pos, int data) { int i; struct node *p, *q; p = head; for (i = 0; i < pos-1 && p != NULL; i++) { p = p->next; } if (p == NULL) { printf("插入位置无效.\n"); return head; } q = (struct node *)malloc(sizeof(struct node)); q->data = data; q->next = p->next; p->next = q; return head; } struct node *delete_node(struct node *head, int pos) { int i; struct node *p, *q; p = head; for (i = 0; i < pos-1 && p != NULL; i++) { p = p->next; } if (p == NULL || p->next == NULL) { printf("删除位置无效.\n"); return head; } q = p->next; p->next = q->next; free(q); return head; } int search_node(struct node *head, int data) { int pos = 0; struct node *p = head->next; while (p != NULL) { pos++; if (p->data == data) { return pos; } p = p->next; } return -1; // 没找到 } void display_list(struct node *head) { struct node *p = head->next; while (p != NULL) { printf("%d ", p->data); p = p->next; } printf("\n"); } int main() { struct node *head, *p; int n, pos, data; int choice = 1; printf("请输入链表的长度: "); scanf("%d", &n); head = create_list(n); while (choice) { printf("请选择要执行的操作:\n"); printf("1. 插入节点\n"); printf("2. 删除节点\n"); printf("3. 查找节点\n"); printf("4. 显示链表\n"); printf("0. 退出程序\n"); scanf("%d", &choice); switch (choice) { case 1: printf("请输入要插入的位置和数据: "); scanf("%d %d", &pos, &data); head = insert_node(head, pos, data); break; case 2: printf("请输入要删除的位置: "); scanf("%d", &pos); head = delete_node(head, pos); break; case 3: printf("请输入要查找的数据: "); scanf("%d", &data); pos = search_node(head, data); if (pos != -1) { printf("数据%d在链表中的位置是%d\n", data, pos); } else { printf("数据%d不在链表中\n", data); } break; case 4: display_list(head); break; case 0: printf("程序已退出.\n"); break; default: printf("无效的选择.\n"); break; } } p = head; while (p != NULL) { head = p->next; free(p); p = head; } return 0; } ``` ### 回答2: 单链表是一种常见的数据结构,用于存储和操作一组数据。下面将用C语言实现单链表的创建、插入、删除、查找和显示。 创建单链表: 首先,定义一个结构体表示链表的节点,包含数据和指向下一个节点的指针。 ```c typedef struct Node { int data; struct Node* next; } Node; ``` 然后,定义一个头节点作为链表的起始节点。 ```c Node* head = NULL; ``` 插入节点: 插入节点可以在链表任意位置进行。以下是在链表的末尾插入节点的例子。 ```c void insertNode(int data) { Node* newNode = (Node*)malloc(sizeof(Node)); newNode->data = data; newNode->next = NULL; if (head == NULL) { head = newNode; } else { Node* current = head; while (current->next != NULL) { current = current->next; } current->next = newNode; } } ``` 删除节点: 删除节点可以根据节点的值或位置进行。以下是根据节点值删除节点的例子。 ```c void deleteNode(int data) { if (head == NULL) { return; } Node* current = head; Node* prev = NULL; if (current->data == data) { head = current->next; free(current); return; } while (current != NULL && current->data != data) { prev = current; current = current->next; } if (current == NULL) { return; } prev->next = current->next; free(current); } ``` 查找节点: 查找节点可以通过节点的值或位置进行。以下是根据节点值查找节点的例子。 ```c Node* findNode(int data) { Node* current = head; while (current != NULL && current->data != data) { current = current->next; } return current; } ``` 显示单链表: 显示单链表可以遍历链表中的节点,并将节点的值输出。以下是显示单链表的例子。 ```c void displayList() { Node* current = head; while (current != NULL) { printf("%d ", current->data); current = current->next; } printf("\n"); } ``` 通过以上程序,我们可以实现单链表的创建、插入、删除、查找和显示。 ### 回答3: 单链表是一种常见的数据结构,可以用来存储和操作一系列的元素。下面是使用C语言实现单链表的创建、插入、删除、查找和显示的代码: ```c #include <stdio.h> #include <stdlib.h> // 定义链表节点的结构体 struct ListNode { int value; struct ListNode* next; }; // 创建链表 struct ListNode* createList(int num) { struct ListNode* head = NULL; struct ListNode* tail = NULL; for (int i = 1; i <= num; i++) { struct ListNode* node = (struct ListNode*)malloc(sizeof(struct ListNode)); node->value = i; node->next = NULL; if (head == NULL) { head = tail = node; } else { tail->next = node; tail = node; } } return head; } // 在链表的指定位置插入节点 void insertNode(struct ListNode** head, int pos, int value) { struct ListNode* newNode = (struct ListNode*)malloc(sizeof(struct ListNode)); newNode->value = value; newNode->next = NULL; if (pos <= 0) { newNode->next = *head; *head = newNode; } else { struct ListNode* curr = *head; int i = 1; while (curr != NULL && i < pos) { curr = curr->next; i++; } if (curr != NULL) { newNode->next = curr->next; curr->next = newNode; } } } // 删除链表中指定节点 void deleteNode(struct ListNode** head, int value) { struct ListNode* prev = NULL; struct ListNode* curr = *head; while (curr != NULL && curr->value != value) { prev = curr; curr = curr->next; } if (curr != NULL) { if (prev == NULL) { *head = curr->next; } else { prev->next = curr->next; } free(curr); } } // 查找链表中指定值的节点 struct ListNode* searchNode(struct ListNode* head, int value) { struct ListNode* curr = head; while (curr != NULL && curr->value != value) { curr = curr->next; } return curr; } // 显示链表中的所有节点值 void displayList(struct ListNode* head) { struct ListNode* curr = head; while (curr != NULL) { printf("%d ", curr->value); curr = curr->next; } printf("\n"); } int main() { struct ListNode* head = createList(5); displayList(head); insertNode(&head, 0, 10); displayList(head); deleteNode(&head, 3); displayList(head); struct ListNode* node = searchNode(head, 4); if (node != NULL) { printf("找到了节点 %d\n", node->value); } else { printf("未找到节点\n"); } return 0; } ``` 以上代码实现单链表的创建、插入、删除、查找和显示功能。在`main`函数中,首先通过`createList`函数创建了一个包含5个节点的链表,并通过`displayList`函数将链表的节点值打印出来。 然后,使用`insertNode`函数在链表的指定位置(0 表示在头部插入)插入了一个值为10的节点,并再次使用`displayList`函数将链表的节点值打印出来。 接着,使用`deleteNode`函数删除了链表中值为3的节点,并再次使用`displayList`函数将链表的节点值打印出来。 最后,使用`searchNode`函数查找了链表中值为4的节点,并根据节点是否为空来判断是否找到了节点。

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

jakerc

原创不易,您的奖励将是我最大的

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值