数据结构之内核链表


建议在清楚单向和双向循环链表之后再来使用内核链表,不要上来就使用内核链表
本文直接贴出了内核链表的list.h文件,并相应使用的几段代码和项目

内核链表 .h 文件

#ifndef __DLIST_H
#define __DLIST_H

/* This file is from Linux Kernel (include/linux/list.h)
* and modified by simply removing hardware prefetching of list items.
* Here by copyright, credits attributed to wherever they belong.
* Kulesh Shanmugasundaram (kulesh [squiggly] isis.poly.edu)
*/

/*
* Simple doubly linked list implementation.
*
* Some of the internal functions (“__xxx”) are useful when
* manipulating whole lists rather than single entries, as
* sometimes we already know the next/prev entries and we can
* generate better code by using them directly rather than
* using the generic single-entry routines.
*/
/**
 * container_of - cast a member of a structure out to the containing structure
 *
 * @ptr:	the pointer to the member.
 * @type:	the type of the container struct this is embedded in.
 * @member:	the name of the member within the struct.
 *
 */
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)

#define container_of(ptr, type, member) ({			\
        const typeof( ((type *)0)->member ) *__mptr = (ptr);	\
        (type *)( (char *)__mptr - offsetof(type,member) );}
/*
 * These are non-NULL pointers that will result in page faults
 * under normal circumstances, used to verify that nobody uses
 * non-initialized list entries.
 */
#define LIST_POISON1  ((void *) 0x00100100)
#define LIST_POISON2  ((void *) 0x00200)

//指针域部分,小结构体,用它来构建“纯粹链表”
struct list_head {
	struct list_head *next, *prev;
};

//节点结构体变量初始化
#define LIST_HEAD_INIT(name) { &(name), &(name) }

#define LIST_HEAD(name) \
struct list_head name = LIST_HEAD_INIT(name)

//节点结构体指针初始化
#define INIT_LIST_HEAD(ptr) do { \
	(ptr)->next = (ptr); (ptr)->prev = (ptr); \
} while (0)

/*
* Insert a new entry between two known consecutive entries.
*
* This is only for internal list manipulation where we know
* the prev/next entries already!
*/

//将new节点插入到prev和next节点之间
static inline void __list_add(struct list_head *new,
				struct list_head *prev,
				struct list_head *next)
{
	next->prev = new;
	new->next = next;
	new->prev = prev;
	prev->next = new;
	
	
}

/**
* list_add – add a new entry
* @new: new entry to be added
* @head: list head to add it after
*
* Insert a new entry after the specified head.
* This is good for implementing stacks.
*/
//将new节点插入到head节点后面
static inline void list_add(struct list_head *new, struct list_head *head)
{
	__list_add(new, head, head->next);
}

/**
* list_add_tail – add a new entry
* @new: new entry to be added
* @head: list head to add it before
*
* Insert a new entry before the specified head.
* This is useful for implementing queues.
*/
//将new节点插入到head的前面
static inline void list_add_tail(struct list_head *new, struct list_head *head)
{
	__list_add(new, head->prev, head);
}

/*
* Delete a list entry by making the prev/next entries
* point to each other.
*
* This is only for internal list manipulation where we know
* the prev/next entries already!
*/
//取出prev和next节点之间的结点
static inline void __list_del(struct list_head *prev, struct list_head *next)
{
	next->prev = prev;
	prev->next = next;
}

/**
* list_del – deletes entry from list.
* @entry: the element to delete from the list.
* Note: list_empty on entry does not return true after this, the entry is in an undefined state.
*/
//取出entry结点:让entry独立出来,前后指针域指向0地址
static inline void list_del(struct list_head *entry)
{
	__list_del(entry->prev, entry->next);
	entry->next = (void *) 0;
	entry->prev = (void *) 0;
}

/**
* list_del_init – deletes entry from list and reinitialize it.
* @entry: the element to delete from the list.
*/
//取出entry结点:让entry独立出来,前后指针域指向自己的地址
static inline void list_del_init(struct list_head *entry)
{
	__list_del(entry->prev, entry->next);
	INIT_LIST_HEAD(entry);
}

/**
* list_move – delete from one list and add as another’s head
* @list: the entry to move
* @head: the head that will precede our entry
*/
//将list移动到head后面
static inline void list_move(struct list_head *list,
				struct list_head *head)
{
	__list_del(list->prev, list->next);
	list_add(list, head);
}

/**
* list_move_tail – delete from one list and add as another’s tail
* @list: the entry to move
* @head: the head that will follow our entry
*/
//将list移动到head前面
static inline void list_move_tail(struct list_head *list,
					struct list_head *head)
{
	__list_del(list->prev, list->next);
	list_add_tail(list, head);
}

/**
* list_empty – tests whether a list is empty
* @head: the list to test.
*/
//空链表判断
static inline int list_empty(struct list_head *head)
{
	return head->next == head;
}

//将list链表与head链表进行拼接
//拼接完的链表头是head
//比如:list: 1 2 3 4 5 6 7
//      head: 11 22 33 44
//      结果:head : 1 2 3 4 5 6 7 11 22 33 44
static inline void __list_splice(struct list_head *list,
					struct list_head *head)
{
	struct list_head *first = list->next;
	struct list_head *last = list->prev;
	struct list_head *at = head->next;

	first->prev = head;
	head->next = first;

	last->next = at;
	at->prev = last;
}

/**
* list_splice – join two lists
* @list: the new list to add.
* @head: the place to add it in the first list.
*/
static inline void list_splice(struct list_head *list, struct list_head *head)
{
if (!list_empty(list))
__list_splice(list, head);
}

/**
* list_splice_init – join two lists and reinitialise the emptied list.
* @list: the new list to add.
* @head: the place to add it in the first list.
*
* The list at @list is reinitialised
*/
static inline void list_splice_init(struct list_head *list,
struct list_head *head)
{
if (!list_empty(list)) {
__list_splice(list, head);
INIT_LIST_HEAD(list);
}
}

/**
* list_entry – get the struct for this entry
* @ptr:    the &struct list_head pointer.
* @type:    the type of the struct this is embedded in.
* @member:    the name of the list_struct within the struct.
*/
//小结构体指针ptr,大结构体类型type,小结构体在大结构体内部的成员名list
//小结构体指针的地址,减去跟大结构体地址之间的偏移量
#define list_entry(ptr, type, member) \
((type *)((char *)(ptr)-(unsigned long)(&((type *)0)->member)))

/**
* list_for_each    -    iterate over a list
* @pos:    the &struct list_head to use as a loop counter.
* @head:    the head for your list.
*/

//遍历链表的for循环,每一次循环体内得到的就是一个小结构体指针
#define list_for_each(pos, head) \
for (pos = (head)->next; pos != (head); \
pos = pos->next)

/**
* list_for_each_prev    -    iterate over a list backwards
* @pos:    the &struct list_head to use as a loop counter.
* @head:    the head for your list.
*/
//从后往前遍历
#define list_for_each_prev(pos, head) \
for (pos = (head)->prev; pos != (head); \
pos = pos->prev)

/**
* list_for_each_safe    -    iterate over a list safe against removal of list entry
* @pos:    the &struct list_head to use as a loop counter.
* @n:        another &struct list_head to use as temporary storage
* @head:    the head for your list.
*/
//安全的遍历,防止在循环体中有对节点的删除操作,这样会导致下一次进入循环体出现段错误
#define list_for_each_safe(pos, n, head) \
for (pos = (head)->next, n = pos->next; pos != (head); \
pos = n, n = pos->next)

/**
* list_for_each_entry    -    iterate over list of given type
* @pos:    the type * to use as a loop counter.
* @head:    the head for your list.
* @member:    the name of the list_struct within the struct.
*/
//遍历过程中,得到大结构体指针:
//pos是遍历过程中的大结构体指针变量,
//head是小结构体链表头指针
//member小结构体在大结构体里面的成员名
#define list_for_each_entry(pos, head, member)                \
for (pos = list_entry((head)->next, typeof(*pos), member);    \
&pos->member != (head);                     \
pos = list_entry(pos->member.next, typeof(*pos), member))

/**
* list_for_each_entry_safe – iterate over list of given type safe against removal of list entry
* @pos:    the type * to use as a loop counter.
* @n:        another type * to use as temporary storage
* @head:    the head for your list.
* @member:    the name of the list_struct within the struct.
*/
#define list_for_each_entry_safe(pos, n, head, member)            \
for (pos = list_entry((head)->next, typeof(*pos), member),    \
n = list_entry(pos->member.next, typeof(*pos), member);    \
&pos->member != (head);                     \
pos = n, n = list_entry(n->member.next, typeof(*n), member))

#endif

基于Linux的铁路管理系统

请添加图片描述
工程代码请见下面链接(需要付费 博主也花了心思@@)

简单应用的几个小程序

学习时可以参考注释理解代码,代码博主亲自跑过一遍

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

typedef int Datatype;

//数据节点结构体声明
typedef struct node		//大结构体:存放数据
{
	Datatype data;
	struct list_head list;		//小结构体:存放前驱指针和后继指针
}Node, *Link;

Link init_list();
Link create_node(Datatype data);
void display(Link head);
void delete_node(Link head, Datatype data);
Link find_node(Link head, Datatype data);

//初始化链表
Link init_list()
{
	//创建节点
	Link head = malloc(sizeof(Node));
	//创建纯粹链表
	if (head != NULL)
	{
		INIT_LIST_HEAD(&(head->list));
	}
	return head;
}

//创建节点
Link create_node(Datatype data)
{
	Link new = malloc(sizeof(Node));
	if (new != NULL)
	{
		new->data = data;
		new->list.prev = NULL;
		new->list.next = NULL;
	}
	return new;
}

//遍历
void display(Link head)
{
	Link Node_p = NULL;
	Link N = NULL;
	list_for_each_entry_safe(Node_p, N, &(head->list), list)
	{
		printf("%d ", Node_p->data);
	}
	printf("\n");
}

//删除节点
void delete_node(Link head, Datatype data)
{
	Link Node_p = NULL;
	Link N = NULL;
	list_for_each_entry_safe(Node_p, N, &(head->list), list)
	{
		if (Node_p->data == data)
		{
			list_del(&(Node_p->list));//删除节点
			free(Node_p);
		}
	}
	printf("没有该节点\n");

	// Link Node_p = find_node(head, data);
	// if (Node_p == NULL)
	// {
	// 	printf("没有该节点\n");
	// }
	// else
	// {
	// 	list_del(&(Node_p->list));//删除节点
	// 	free(Node_p);
	// }
}

//查找节点
Link find_node(Link head, Datatype data)
{
	Link Node_p = NULL;
	Link N = NULL;
	list_for_each_entry_safe(Node_p, N, &(head->list), list)
	{
		if (Node_p->data == data)
		{
			return Node_p;
		}
	}
	return NULL;
}

int main(int argc, char const *argv[])
{
	//初始化一个空链表
	Link head = init_list();

	//创建节点在插入
	int i;
	for (i = 0; i < 5; ++i)
	{	
		Link new = create_node(i+1);	
		list_add_tail(&(new->list), &(head->list));
	}

	//遍历
	display(head);

	return 0;
}

```c
#include "list.h"
#include <stdio.h>
#include <stdlib.h>

//数据节点结构体声明
struct node		//大结构体:存放数据
{
	int data;
	struct list_head list;		//小结构体:存放前驱指针和后继指针
};

int main(int argc, char const *argv[])
{
	//创建节点
	struct node *head = malloc(sizeof(struct node));
	struct node *head1 = malloc(sizeof(struct node));
	//创建纯粹链表
	if (head != NULL)
	{
		INIT_LIST_HEAD(&(head->list));
	}
	if (head1 != NULL)
	{
		INIT_LIST_HEAD(&(head1->list));
	}
	int i;
	for (i = 0; i < 5; ++i)
	{
		struct node *new = malloc(sizeof(struct node));
		if (new != NULL)
		{
			new->data = i+1;
			new->list.prev = NULL;
			new->list.next = NULL;
		}
		else
		{
			i--;
			continue;
		}

		//向链表里面插入节点
		//头插
		// list_add(&(new->list), &(head->list));
		//尾插
		list_add_tail(&(new->list), &(head->list));
	}

	for (i = 0; i < 5; ++i)
	{
		struct node *new = malloc(sizeof(struct node));
		if (new != NULL)
		{
			new->data = i+11;
			new->list.prev = NULL;
			new->list.next = NULL;
		}
		else
		{
			i--;
			continue;
		}

		//向链表里面插入节点
		//头插
		// list_add(&(new->list), &(head->list));
		//尾插
		list_add_tail(&(new->list), &(head1->list));
	}
	create_node(head,11);

	//遍历

	struct list_head *pos = NULL;
	struct list_head *n = NULL;

	struct node *Node_p = NULL;
	struct node *N = NULL;

	//第一种
	// list_for_each(pos, &(head->list))
	// {
	// 	struct node *p = list_entry(pos, struct node, list);	
	// 	printf("%d ", p->data);
	// }
	// printf("\n");

	//第二种
	// list_for_each_prev(pos, &(head->list))
	// {
	// 	struct node *p = list_entry(pos, struct node, list);	
	// 	printf("%d ", p->data);
		
	// }
	// printf("\n");

	//第三种
	// list_for_each_safe(pos, n, &(head->list))
	// {
	// 	struct node *p = list_entry(pos, struct node, list);
	// 	if (p->data == 3)
	// 	{
	// 		list_del(&(p->list));
	// 	}
	// 	else	
	// 		printf("%d ", p->data);
	// }
	// printf("\n");

	//第四种
	// list_for_each_entry(Node_p, &(head->list), list)
	// {		
	// 	printf("%d ", Node_p->data);
	// }
	// printf("\n");

	//第五种
	// list_for_each_entry_safe(Node_p, N, &(head->list), list)
	// {
	// 	if (Node_p->data == 3)
	// 	{
	// 		// list_del(&(Node_p->list));//删除节点
	// 		// free(Node_p);

	// 		list_del_init(&(Node_p->list));
	// 	}
	// 	else
	// 		printf("%d ", Node_p->data);
	// }
	// printf("\n");

	//移动节点
	struct node *N1 = NULL;
	struct node *N2 = NULL;
	list_for_each_entry_safe(Node_p, N, &(head->list), list)
	{
		if (Node_p->data == 2)
		{
			N1 = Node_p;
		}
		if (Node_p->data == 4)
		{
			N2 = Node_p;
		}
	}

	list_move(&(N1->list), &(N2->list));
	list_move_tail(&(N1->list), &(N2->list));

	list_for_each_entry_safe(Node_p, N, &(head->list), list)
	{
		printf("%d ", Node_p->data);	
	}
	printf("\n");


	//合并链表
	list_splice(&(head->list), &(head1->list));

	list_for_each_entry_safe(Node_p, N, &(head1->list), list)
	{
		printf("%d ", Node_p->data);	
	}
	printf("\n");


	return 0;
}

```c
//头文件
#include "list.h"
#include <stdio.h>
#include <stdlib.h>

typedef int Datatype;



//数据节点结构体声明
typedef struct node		//大结构体:存放数据
{
	Datatype data;
	struct list_head list;		//小结构体:存放前驱指针和后继指针
}Node, *Link;



//初始化链表
Link init_list()
{
	//创建节点
	Link head = malloc( sizeof( Node ) ) ;
	//创建纯粹链表
	if ( head != NULL )
	{
		INIT_LIST_HEAD( &( head->list ) ) ;
	}
	return head ; 
}
//创建节点
Link head = malloc( sizeof( struct node ) ) ;

//给大结构体里的数据域放入数据
int a ;
    Link new = malloc( sizeof( struct node ) );
	if ( new != NULL )
	{
		new->data = a ;
		new->list.prev = NULL ;
		new->list.next = NULL ;
	}

//头插
list_add( &( new -> list ) , &( head -> list ) ) ;
//尾插
list_add_tail( &( new -> list ) , &( head -> list ) ) ;


//创建节点
Link create_node( Datatype data )
{
	Link new = malloc( sizeof( Node ) ) ;
	if ( new != NULL )
	{
		new->data = data ;
		new->list.prev = NULL ;
		new->list.next = NULL ;
	}
	return new ;
}

//遍历
void display(Link head)
{
	Link Node_p = NULL;
	Link N = NULL;
	list_for_each_entry_safe(Node_p, N, &(head->list), list)
	{
		printf("%d ", Node_p->data);
	}
	printf("\n");
}

//删除节点
void delete_node(Link head, Datatype data)
{
	Link Node_p = NULL;
	Link N = NULL ;
	list_for_each_entry_safe(Node_p, N, &(head->list), list)
	{
		if ( Node_p->data == data )
		{
			list_del(&(Node_p->list));//删除节点
			free(Node_p);
		}
	}
	printf("没有该节点\n");

	// Link Node_p = find_node(head, data);
	// if (Node_p == NULL)
	// {
	// 	printf("没有该节点\n");
	// }
	// else
	// {
	// 	list_del(&(Node_p->list));//删除节点
	// 	free(Node_p);
	// }
}

//查找节点
Link find_node( Link head, Datatype data )
{
	Link Node_p = NULL;
	Link N = NULL;
	list_for_each_entry_safe( Node_p , N , &( head -> list ) , list )
	{
		if ( Node_p -> data == data )
		{
			return Node_p ;
		}
	}
	return NULL ;
}


//移动节点
	Link N1 = NULL ;
	Link N2 = NULL ;
	list_for_each_entry_safe( Node_p , N , &( head -> list ), list )
	{
		if ( Node_p -> data == 2 )
		{
			N1 = Node_p ;
		}
		if ( Node_p -> data == 4 )
		{
			N2 = Node_p ;
		}
	}
//把 N1 移到 N2 后面  把 2 移到 4 后面
	list_move( &( N1 -> list ), &( N2 -> list ) ) ;
//把 N1 移到 N2 前面  把 2 移到 4 前面
	list_move_tail( &( N1 -> list ) , &( N2 -> list ) ) ;



//合并链表
	//            12345             6789
	list_splice( &( head -> list ) , &( head1 -> list ) ) ;

	list_for_each_entry_safe( Node_p , N , &( head1 -> list ) , list )
	{
		printf( "%d", Node_p -> data ) ;	
	}
	printf("\n");
	//123456789
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

jianglongyin

你的鼓励将是我创作的最大动力

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

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

打赏作者

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

抵扣说明:

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

余额充值