双链表中对数据进行 "增删查改" 操作
代码博文:http://data.biancheng.net/view/167.html
#include <stdio.h>
#include <stdlib.h>
typedef struct line {
struct line *prior;
int data;
struct line *next;
} line;
//双链表的创建
line *initLine(line *head);
//双链表插入元素,add表示插入位置
line *insertLine(line *head, int data, int add);
//双链表删除指定元素
line *delLine(line *head, int data);
//双链表中查找指定元素
int selectElem(line *head, int elem);
//双链表中更改指定位置节点中存储的数据,add表示更改位置
line *amendElem(line *p, int add, int newElem);
//输出双链表的实现函数
void display(line *head);
int main(void)
{
line *head = NULL;
//创建双链表
printf("初始链表为:\n");
head = initLine(head);
display(head);
//在表中第 3 的位置插入元素 7
printf("\n在表中第 3 的位置插入新元素 7:\n");
head = insertLine(head, 7, 3);
display(head);
//表中删除元素 2
printf("\n删除元素 2:\n");
head = delLine(head, 2);
display(head);
//查找表中元素3的数据值
printf("\n元素 3 的位置是:%d\n", selectElem(head, 3));
//表中第 3 个节点中的数据改为存储 6
printf("\n将第 3 个节点存储的数据改为 6:\n");
head = amendElem(head, 3, 6);
display(head);
return 0;
}
line *initLine(line *head)
{
head = (line *)malloc(sizeof(line));
head->prior = NULL;
head->next = NULL;
head->data = 1;
int i = 0;
line *list = head;
for (i = 2; i <= 10; i++) {
line *body = (line *)malloc(sizeof(line));
body->prior = NULL;
body->next = NULL;
body->data = i;
list->next = body;
body->prior = list;
list = list->next; // list指针回归链表尾部
}
return head;
}
line *insertLine(line *head, int data, int add) {
//新建数据域为data的结点
line *temp = (line *)malloc(sizeof(line));
temp->data = data;
temp->prior = NULL;
temp->next = NULL;
// 链表中插入数据,不是插入表头,就是表尾,或者中间位置;如果不是表头、表尾(头尾可特殊判断处理),则一定是中间位置。
//插入到链表头(即插入到链表的第一个节点位置处),要特殊考虑
if (add == 1) {
temp->next = head;
head->prior = temp;
head = temp;
} else {
int i = 0;
line *body = head;
//找到要插入位置的前一个结点
for (i = 1; i < add - 1; i++) {
body = body->next;
if (body == NULL) {
printf("插入位置有误\n");
break;
}
}
if (body) {
//判断条件为真,说明插入位置为链表尾
if (body->next == NULL) {
body->next = temp;
temp->prior = body;
} else {
body->next->prior = temp;
temp->next = body->next;
body->next = temp;
temp->prior = body;
}
}
}
return head;
}
line *delLine(line *head, int data) {
line *temp = head;
//遍历链表
while (temp) {
//判断当前结点中数据域和data是否相等,若相等,摘除该结点
if (temp->data == data) {
temp->prior->next = temp->next;
temp->next->prior = temp->prior;
free(temp);
return head;
}
temp = temp->next;
}
printf("链表中无该数据元素\n");
return head;
}
//head为原双链表,elem表示被查找元素
int selectElem(line *head, int elem) {
//新建一个指针t,初始化为头指针 head
line *t = head;
int i = 1;
while (t) {
if (t->data == elem) {
return i;
}
i++;
t = t->next;
}
//程序执行至此处,表示查找失败
return -1;
}
//更新函数,其中,add 表示更改结点在双链表中的位置,newElem 为新数据的值
line *amendElem(line *p, int add, int newElem) {
int i = 0;
line *temp = p;
//遍历到被删除结点
for (i = 1; i < add; i++) {
temp = temp->next;
if (temp == NULL) {
printf("更改位置有误!\n");
break;
}
}
if (temp) {
temp->data = newElem;
}
return p;
}
//输出链表的功能函数
void display(line *head) {
line *temp = head;
while (temp) {
if (temp->next == NULL) {
printf("%d\n", temp->data);
} else {
printf("%d->", temp->data);
}
temp = temp->next;
}
}
执行结果如下:

这篇博客介绍了如何使用C语言实现双链表的创建、插入、删除、查找和修改元素的操作。通过示例代码展示了如何在双链表中进行增删查改,并给出了完整的程序执行结果。
219

被折叠的 条评论
为什么被折叠?



