关于链表的一些重要操作(Important operations on a Linked List)
上篇博文中讨论了链表的一些基本操作:
然而,为创建一个多功能的链表,在深度学习之前我们还需要了解更多的链表操作。
- 在表头插入元素。
- 在表中插入元素。
- 在确定的位置插入。
- 在某个元素的后面插入。
- 从链表中删除一个元素。
- 删除整个链表。
在链表头部插入元素
为了在链表头部插入元素,我们要完成一项小任务:创建一个临时节点,把数据存入这个临时节点,将这个节点指向链表的头节点。
/*
Defining a function to add an element at the beginning of the Linked List
*/
struct node * addAtBeg(struct node * head, int number)
{
//making a temporary node
struct node * temp = (struct node*)malloc(sizeof(struct node)); //assigning the necessary values
temp -> data = number;
temp -> next = head; //we make the new node as the head node and return
return temp;
}
在链表的特定位置插入数据
依然创建临时节点,把要插入的数据存入这个节点。将临时节点指向指定位置(假定指定位置在两个节点中间)的下个节点,把指定位置上个节点指向临时节点。

/*Defining a function to add at a particular position in a Linked List*/
struct node * addAtPos(struct node *head, int number, int pos)
{
//this is our initial position
int initial_pos = ; //This is a very important statement in all Linked List traversals
//Always create some temporary variable to traverse the list.
//This is done so that we do not loose the starting point of the
//Linked List, that is the HEAD
struct node * mover = head; while(initial_pos != pos)
{
//we need to traverse the Linked List, until
//we reached the userdefined position
mover = mover -> next; //incrementing initial position
initial_pos++;
} //Now mover points to the user defined position //Create a temporary node
struct node * temp = (struct node*)malloc(sizeof(struct node));
temp -> data = number; //Inserting the node.
temp -> next = mover -> next;
mover -> next = temp; return head;
}
在指定节点后插入数据
整个过程其实和上面的一样,唯一的区别是我们需要遍历整个链表找到指定节点,然后执行过程大同小异。
/*
Defining a function to insert after a specified node
*/
struct node * addAfterNode(struct node * head, int number, int after_num)
{
//creating a temporary node to iterate
struct node * mover = head; while(mover -> data != after_num)
{
// We need to iterate until we reach the desired node
mover = mover -> next;
} //Now mover points at the node that we want to insert struct node *temp = (struct node*)malloc(sizeof(struct node));
temp -> data = number;
temp -> next = mover -> next;
mover -> next = temp; return head;
}
删除节点
删除节点,我们需要遍历链表找到要删除的节点。删除节点不需要什么高级的操作,只要将被删除节点的前个节点的next指向被删除节点的下个节点就完成了。

/*
Defining a function to delete a node in the Linked List
*/
struct node * deleteANode(struct node * head, int node_data)
{
//In this function we will try to delete a node that
//has the particular node data given by the user struct node * mover = head; //Creating a variable to store the previous node
struct node * prev; while(mover -> data != node_data)
{
prev = mover;
mover = mover -> next;
} //Now mover point to the node that we need to delete
//prev points to the node just before mover. //Deleting the node mover
prev -> next = mover -> next; return head;
}
删除整个链表
简单清空HEAD就能删除整个链表,但数据仍然在内存中,只是丢失对它的连接。要彻底删除我们可以用free()函数。
/*
Defining a function to delete the entire List
*/
struct node * deleteList(struct node * head)
{
struct node * temp; while(head != NULL)
{
temp = head;
head = head -> next;
free(temp);
} return NULL;
}
完整代码如下:
#include<stdio.h>
#include<stdlib.h> //creating the basic structure of a node of a Linked List
struct node
{
int data;
struct node * next;
}; /*
Code obtained from http://www.studyalgorithms.com
*/
/* Defining a function to create a new list.
The return type of the function is struct node, because we will return the head node
The parameters will be the node, passed from the main function.
The second parameter will be the data element.
*/
struct node * createList(struct node *head,int number)
{
//creating a temporary node for our initialization purpose //the below line allocates a space in memory that can hold the data in a node.
struct node *temp = (struct node *)malloc(sizeof(struct node)); //assigning the number to data
temp -> data = number; //assigning the next of this node to NULL, as a new list is formed.
temp -> next = NULL; //now since we have passed head as the parameter, we need to return it.
head = temp;
return head;
} /*
Defining a case when we need to element in the Linked List.
Here 2 cases can arise:-
-The Linked List can be empty, then we need to create a new list
-The Linked List exists, we need to add the element
*/
struct node * addElement(struct node *head, int number)
{
if(head == NULL)
head = createList(head, number); // we can directly call the above function
else
{
// now this is a case when we need to add an element to an existing list. //Creating a new node and assigning values
struct node * temp = (struct node*)malloc(sizeof(struct node));
temp -> data = number;
temp -> next = NULL; //Now we have created the node but, we need to insert it at the right place.
//A Linked List terminates when we encounter a NULL
//Feel free to copy but please acknowledge studyalgorithms.com
//Let us traverse the List using another temporary variable.
//We will point it to the start
struct node * temp2 = head; //The limiting condition of the while loop "until temp2's NEXT is not equal to NULL
//This will happen only in case of the last node of the list.
while(temp2 -> next != NULL)
{
// We need to go to the next node
temp2 = temp2 -> next;
} //Now temp2 points at the last node of the list.
//We can add the node at this position now. temp2 -> next = temp; // the number is added to the end of the List.
} return head; // because we only need the HEAD pointer for a Linked List.
} /*
A function to print the Linked List.
The return type of this function will be void, as we do not need to return anything.
We just need the HEAD as the parameter, to traverse the Linked List.
*/
void printList(struct node * head)
{
printf("\nThe list is as:- \n");
// The terminating point of a Linked List is defined when we encounter a NULL
while(head != NULL)
{
printf("%d ",head->data); //now we need to move to the next element
head = head->next;
//Feel free to copy but please acknowledge studyalgorithms.com
}
printf("\n");
} /*
Defining a function to add an element at the beginning of the Linked List
*/
struct node * addAtBeg(struct node * head, int number)
{
//making a temporary node
struct node * temp = (struct node*)malloc(sizeof(struct node)); //assigning the necessary values
temp -> data = number;
temp -> next = head; //we make the new node as the head node and return
return temp;
} /*Defining a function to add at a particular position in a Linked List*/
struct node * addAtPos(struct node *head, int number, int pos)
{
if(head == NULL)
{
printf("\nList is EMPTY");
return NULL;
}
//this is our initial position
int initial_pos = ; //This is a very important statement in all Linked List traversals
//Always create some temporary variable to traverse the list.
//This is done so that we do not loose the starting point of the
//Linked List, that is the HEAD
struct node * mover = head; while(initial_pos != pos)
{
//we need to traverse the Linked List, until
//we reached the userdefined position
mover = mover -> next; //incrementing initial position
initial_pos++;
//Feel free to copy but please acknowledge studyalgorithms.com
} //Now mover points to the user defined position //Create a temporary node
struct node * temp = (struct node*)malloc(sizeof(struct node));
temp -> data = number; //Inserting the node.
temp -> next = mover -> next;
mover -> next = temp; return head;
} /*
Defining a function to insert after a specified node
*/
struct node * addAfterNode(struct node * head, int number, int after_num)
{
if(head == NULL)
{
printf("\nList is EMPTY");
return NULL;
} //creating a temporary node to iterate
struct node * mover = head; while(mover -> data != after_num)
{
// We need to iterate until we reach the desired node
mover = mover -> next;
} //Now mover points at the node that we want to insert struct node *temp = (struct node*)malloc(sizeof(struct node));
temp -> data = number;
temp -> next = mover -> next;
//Feel free to copy but please acknowledge studyalgorithms.com
mover -> next = temp; return head;
} /*
Defining a function to delete a node in the Linked List
*/
struct node * deleteANode(struct node * head, int node_data)
{
if(head == NULL)
{
printf("\nList is EMPTY");
return NULL;
} //In this function we will try to delete a node that
//has the particular node data given by the user struct node * mover = head; //Creating a variable to store the previous node
struct node * prev; while(mover -> data != node_data)
{
prev = mover;
mover = mover -> next;
} //Now mover point to the node that we need to delete
//prev points to the node just before mover. //Deleting the node mover
prev -> next = mover -> next; return head;
} /*
Defining a function to delete the entire List
*/
struct node * deleteList(struct node * head)
{
if(head == NULL)
{
printf("\nList is EMPTY");
return NULL;
} struct node * temp; while(head != NULL)
{
temp = head;
head = head -> next;
free(temp);
} return NULL;
} //Defining the main function to implement all the above defined functions
int main(void)
{
int choice = ;
int flag = ;
int num;
int pos; struct node *listHead = NULL; while(flag != )
{
printf("\nWhat do you want to do?\n1.>Create a List\n2.>Add an element at the end\n3.>Add an element at the beginning\n4.>Add an element at a position\n5.>Add an element after a certain element\n6.>Delete at node.\n7.>Print the List\n8.>Delet the List\n9.>Exit.\n\nEnter choice:- ");
scanf("%d",&choice); switch(choice)
{
case :
printf("Enter a number:- ");
scanf("%d",&num);
listHead = createList(listHead, num);
//Feel free to copy but please acknowledge studyalgorithms.com
printList(listHead);
break; case :
printf("Enter a number:- ");
scanf("%d",&num);
listHead = addElement(listHead, num);
printList(listHead);
break; case :
printf("Enter a number:- ");
scanf("%d",&num);
listHead = addAtBeg(listHead, num);
printList(listHead);
break; case :
printf("Enter a number:- ");
scanf("%d",&num);
printf("Enter a position:- ");
scanf("%d",&pos);
listHead = addAtPos(listHead, num, pos);
printList(listHead);
break; case :
printf("Enter a number:- ");
scanf("%d",&num);
printf("Enter a node:- ");
scanf("%d",&pos);
listHead = addAfterNode(listHead, num, pos);
printList(listHead);
break; case :
printf("Enter a node to delete:- ");
scanf("%d",&num);
listHead = deleteANode(listHead, num);
printList(listHead);
break; case :
printList(listHead);
break; case :
listHead = deleteList(listHead);
break; case :
flag = ;
break; default:
printf("Invalid choice\n");
//Feel free to copy but please acknowledge studyalgorithms.com
break;
}
} return ;
}
关于链表的一些重要操作(Important operations on a Linked List)的更多相关文章
- 链表的基本操作(Basic Operations on a Linked List)
链表可以进行如下操作: 创建新链表 增加新元素 遍历链表 打印链表 下面定义了对应以上操作的基本函数. 创建新链表 新链表创建之后里面并没有任何元素,我们要为数据在内存中分配节点,再将节点插入链表.由 ...
- 数据结构之链表-链表实现及常用操作(C++篇)
数据结构之链表-链表实现及常用操作(C++篇) 0.摘要 定义 插入节点(单向链表) 删除节点(单向链表) 反向遍历链表 找出中间节点 找出倒数第k个节点 翻转链表 判断两个链表是否相交,并返回相交点 ...
- 链表的无锁操作 (JAVA)
看了下网上关于链表的无锁操作,写的不清楚,遂自己整理一部分,主要使用concurrent并发包的CAS操作. 1. 链表尾部插入 待插入的节点为:cur 尾节点:pred 基本插入方法: do{ pr ...
- 【线性代数】2-4:矩阵操作(Matrix Operations)
title: [线性代数]2-4:矩阵操作(Matrix Operations) toc: true categories: Mathematic Linear Algebra date: 2017- ...
- C++实现链表的相关基础操作
链表的相关基础操作 # include <iostream> using namespace std; typedef struct LNode { int data; //结点的数据域 ...
- C++中单链表的建立和操作
准备数据 准备在链表操作中需要用到的变量及数据结构 示例代码如下: struct Data //数据结点类型 { string key; //关键字 string name; int age; }; ...
- C语言描述链表的实现及操作
一.链表的创建操作 // 操作系统 win 8.1 // 编译环境 Visual Stuido 2017 #include<stdio.h> #include<malloc.h> ...
- 5.List链表类型介绍和操作
数据类型List链表 (1)介绍 list类型其实就是一个双向链表.通过push,pop操作从链表的头部或者尾部添加删除元素.这使得list既可以用作栈,也可以用作队列. 该list链表类型应用场景: ...
- C++学习---单链表的构建及操作
#include <iostream> using namespace std; typedef struct LinkNode { int elem;//节点中的数据 struct Li ...
随机推荐
- 【活动】明星衣橱CEO林清华聊创业 | 猎云网
[活动]明星衣橱CEO林清华聊创业 | 猎云网 [活动]明星衣橱CEO林清华聊创业
- paip.sql索引优化----join 代替子查询法
paip.sql索引优化----join 代替子查询法 作者Attilax , EMAIL:1466519819@qq.com 来源:attilax的专栏 地址:http://blog.csdn.n ...
- jQuery 各种选择器 $.()用法
jQuery 元素选择器jQuery 使用 CSS 选择器来选取 HTML 元素. $("p") 选取 <p> 元素. $("p.intro") 选 ...
- python标准库基础之mmap:内存映射文件
#作用:建立内存映射文件而不是直接读取内容文本信息内容:如下(名称是text.txt) Lorem ipsum dolor sit amet, consectetuer adipiscing elit ...
- git 拆库 切库 切分 子目录建库
如果git库目录是这样的: git根目录 project_a/ project_b/ ... 并且想为project_a单独创建一个代码库 # 拉一个新分支 git co -b project_a_r ...
- web前端之 DOM
文档对象模型(Document Object Model,DOM)是一种用于HTML和XML文档的编程接口.它给文档提供了一种结构化的表示方法,可以改变文档的内容和呈现方式.我们最为关心的是,DOM把 ...
- 软件project(五)——可行性研究
一.目的 用最小的代价高效率的确定问题是否可以解决. 不是去解决这个问题,而是确定问题是否值得去解决.进行可行性研究简化了系统分析和系统设计的过程. 二.任务 (1)进一步分析问题定义. (2)分析员 ...
- PixelFormat 枚举
成员名称 说明 Alpha 像素数据包含没有进行过自左乘的 alpha 值. Canonical 默认像素格式,每像素 32 位. 此格式指定 24 位颜色深度和一个 8 位 alpha 通道. Do ...
- Nginx Configure时配置
Configure Arguments Configure arguments common for nginx binaries from pre-built packages for stable ...
- QTP描述性编程中往WebEdit控件输入文字问题
在网上查找到许多相关的描述性编程的案例,自己就想动手一试,于是在专家视图中输入如下代码: systemUtil.Run "http://www.baidu.com" wait(15 ...