|
// |
|
// list.h |
|
// DataStructureAndAlgorithm |
|
// |
|
// Created by wanyakun on 2016/10/28. |
|
// Copyright © 2016年 com.ucaiyuan. All rights reserved. |
|
// |
|
|
|
#ifndef _LIST_HEAD_H |
|
#define _LIST_HEAD_H |
|
|
|
/* |
|
(01). 节点定义, 虽然名称list_head,但是它既是双向链表的表头,也代表双向链表的节点。 |
|
*/ |
|
// 双向链表节点 |
|
struct list_head { |
|
struct list_head *next, *prev; |
|
}; |
|
|
|
/* |
|
(02). 初始化节点 |
|
LIST_HEAD的作用是定义表头(节点):新建双向链表表头name,并设置name的前继节点和后继节点都是指向name本身。 |
|
LIST_HEAD_INIT的作用是初始化节点:设置name节点的前继节点和后继节点都是指向name本身。 |
|
INIT_LIST_HEAD和LIST_HEAD_INIT一样,是初始化节点:将list节点的前继节点和后继节点都是指向list本身。 |
|
*/ |
|
// 初始化节点:设置name节点的前继节点和后继节点都是指向name本身。 |
|
#define LIST_HEAD_INIT(name) { &(name), &(name) } |
|
|
|
// 定义表头(节点):新建双向链表表头name,并设置name的前继节点和后继节点都是指向name本身。 |
|
#define LIST_HEAD(name) \ |
|
struct list_head name = LIST_HEAD_INIT(name) |
|
|
|
// 初始化节点:将list节点的前继节点和后继节点都是指向list本身。 |
|
static inline void INIT_LIST_HEAD(struct list_head *list) |
|
{ |
|
list->next = list; |
|
list->prev = list; |
|
} |
|
|
|
/* |
|
(03). 添加节点 |
|
__list_add(new, prev, next)的作用是添加节点:将new插入到prev和next之间。在linux中,以"__"开头的函数意味着是内核的内部接口,外部不应该调用该接口。 |
|
list_add(new, head)的作用是添加new节点:将new添加到head之后,是new称为head的后继节点。 |
|
list_add_tail(new, head)的作用是添加new节点:将new添加到head之前,即将new添加到双链表的末尾。 |
|
*/ |
|
// 添加节点:将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; |
|
} |
|
|
|
// 添加new节点:将new添加到head之后,是new称为head的后继节点。 |
|
static inline void list_add(struct list_head *new, struct list_head *head) |
|
{ |
|
__list_add(new, head, head->next); |
|
} |
|
|
|
// 添加new节点:将new添加到head之前,即将new添加到双链表的末尾。 |
|
static inline void list_add_tail(struct list_head *new, struct list_head *head) |
|
{ |
|
__list_add(new, head->prev, head); |
|
} |
|
|
|
/* |
|
(04). 删除节点 |
|
__list_del(prev, next) 和__list_del_entry(entry)都是linux内核的内部接口。 |
|
__list_del(prev, next) 的作用是从双链表中删除prev和next之间的节点。 |
|
__list_del_entry(entry) 的作用是从双链表中删除entry节点。 |
|
|
|
list_del(entry) 和 list_del_init(entry)是linux内核的对外接口。 |
|
list_del(entry) 的作用是从双链表中删除entry节点。 |
|
list_del_init(entry) 的作用是从双链表中删除entry节点,并将entry节点的前继节点和后继节点都指向entry本身。 |
|
*/ |
|
// 从双链表中删除entry节点。 |
|
static inline void __list_del(struct list_head * prev, struct list_head * next) |
|
{ |
|
next->prev = prev; |
|
prev->next = next; |
|
} |
|
|
|
// 从双链表中删除entry节点。 |
|
static inline void list_del(struct list_head *entry) |
|
{ |
|
__list_del(entry->prev, entry->next); |
|
} |
|
|
|
// 从双链表中删除entry节点。 |
|
static inline void __list_del_entry(struct list_head *entry) |
|
{ |
|
__list_del(entry->prev, entry->next); |
|
} |
|
|
|
// 从双链表中删除entry节点,并将entry节点的前继节点和后继节点都指向entry本身。 |
|
static inline void list_del_init(struct list_head *entry) |
|
{ |
|
__list_del_entry(entry); |
|
INIT_LIST_HEAD(entry); |
|
} |
|
|
|
/* |
|
(05). 替换节点 |
|
list_replace(old, new)的作用是用new节点替换old节点。 |
|
*/ |
|
// 用new节点取代old节点 |
|
static inline void list_replace(struct list_head *old, |
|
struct list_head *new) |
|
{ |
|
new->next = old->next; |
|
new->next->prev = new; |
|
new->prev = old->prev; |
|
new->prev->next = new; |
|
} |
|
|
|
/* |
|
(06). 判断双链表是否为空 |
|
list_empty(head)的作用是判断双链表是否为空。它是通过区分"表头的后继节点"是不是"表头本身"来进行判断的。 |
|
*/ |
|
// 双链表是否为空 |
|
static inline int list_empty(const struct list_head *head) |
|
{ |
|
return head->next == head; |
|
} |
|
|
|
// 获取"MEMBER成员"在"结构体TYPE"中的位置偏移 |
|
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) |
|
|
|
// 根据"结构体(type)变量"中的"域成员变量(member)的指针(ptr)"来获取指向整个结构体变量的指针 |
|
#define container_of(ptr, type, member) ({ \ |
|
const typeof( ((type *)0)->member ) *__mptr = (ptr); \ |
|
(type *)( (char *)__mptr - offsetof(type,member) );}) |
|
|
|
/* |
|
(08). 遍历节点 |
|
list_for_each(pos, head)和list_for_each_safe(pos, n, head)的作用都是遍历链表。但是它们的用途不一样! |
|
list_for_each(pos, head)通常用于获取节点,而不能用到删除节点的场景。 |
|
list_for_each_safe(pos, n, head)通常删除节点的场景。 |
|
*/ |
|
// 遍历双向链表 |
|
#define list_for_each(pos, head) \ |
|
for (pos = (head)->next; pos != (head); pos = pos->next) |
|
|
|
#define list_for_each_safe(pos, n, head) \ |
|
for (pos = (head)->next, n = pos->next; pos != (head); \ |
|
pos = n, n = pos->next) |
|
|
|
/* |
|
(07). 获取节点 |
|
ist_entry(ptr, type, member) 实际上是调用的container_of宏。 |
|
它的作用是:根据"结构体(type)变量"中的"域成员变量(member)的指针(ptr)"来获取指向整个结构体变量的指针。 |
|
*/ |
|
#define list_entry(ptr, type, member) \ |
|
container_of(ptr, type, member) |
|
|
|
#endif /* list_h */ |