-
Notifications
You must be signed in to change notification settings - Fork 9
/
clist.c
128 lines (115 loc) · 2.57 KB
/
clist.c
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/**
* @filename: clist.c
*
* @author: QinYUN575
*
* @create date: 2019/11/1
*
*
*
*/
#include <stdlib.h>
#include <string.h>
#include "clist.h"
/**
* 链表初始化
*
* @param CList *list 需要初始化的链表
*
* @param void (*destroy)(void *data) 析构函数
*
*/
void clist_init(CList *list, void (*destroy)(void *data))
{
list->size = 0;
list->destroy = destroy;
list->head = NULL;
return;
}
/**
* 指定要销毁的双向链表
*
* @param CList *list 指定要销毁的链表
*
*/
void clist_destroy(CList *list)
{
void *data;
while (clist_size(list) > 0)
{
if ((list)->destroy != NULL && clist_rem_next(list, NULL, (void *)&data))
{
list->destroy(data);
}
}
/* 清除链表结构数据 */
memset(list, 0, sizeof(CList));
return;
}
/**
* 向指定的链表 list 节点 element 之后插入新节点
*
* @param CList *list 指定要操作的链表
*
* @param CListElmt *element 指定要在该节点之后插入新节点
*
* @param const void *data 要插入新节点的数据域
*
*/
int clist_ins_next(CList *list, CListElmt *element, const void *data)
{
CListElmt *new_element;
if ((new_element = (CListElmt *)malloc(sizeof(CListElmt))) == 0)
{
return -1;
}
new_element->data = (void *)data;
if (clist_size(list) == 0)
{
/* 链表为空,指向自身 */
new_element->next = new_element;
list->head = new_element;
}
else
{
new_element->next = element->next;
element->next = new_element;
}
list->size++;
return 0;
}
/**
* 向指定的链表 list 节点 element 之后插入新节点
*
* @param CList *list 指定要操作的链表
*
* @param CListElmt *element 指定要在该节点之后插入新节点
*
* @param const void *data 要插入新节点的数据域
*
*/
int clist_rem_next(CList *list, CListElmt *element, void **data)
{
CListElmt *old_element;
/* */
if (clist_size(list) == 0)
{
return -1;
}
*data = element->next->data;
// NOTE: 这里不考虑 element 为 NULL 的情况
if (element->next = element)
{
old_element = element->next;
list->head = NULL;
}
else
{
old_element = element->next;
element->next = old_element->next;
}
/* 释放节点数据结构内存空间 */
free(old_element);
list->size--;
return 0;
}