-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathllist.h
50 lines (39 loc) · 999 Bytes
/
llist.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// Created by luo-zeqi on 2023/5/26.
//
#ifndef LIBNE_LLIST_H
#define LIBNE_LLIST_H
// linked list 链表数据头文件, 链表使用头尾相连的
// 方式存储。
typedef struct llnode {
llnode *prev;
llnode *next;
} llnode_t;
#define LLIST_EMPTY(root) \
((root) == (root)->next)
#define LLIST_FOREACH(item, root) \
for ((item) = (root)->next; \
(item) != (root); \
(item) = (item)->next)
static void llist_init(llnode_t *root) {
root->prev = root;
root->next = root;
}
static void llist_add(llnode_t *root, llnode_t *node) {
root->prev->next = node;
node->prev = root->prev;
root->prev = node;
node->next = root;
}
static void llist_remove(llnode_t *node) {
node->prev->next = node->next;
node->next->prev = node->prev;
}
static void llist_move(llnode_t *dst, llnode_t *src) {
dst->next = src->next;
dst->prev = src->prev;
src->next->prev = dst;
src->prev->next = dst;
llist_init(src);
}
#endif //LIBNE_LLIST_H