链表参考实现

链表参考实现代码

处理了传入非法参数等大部分特殊情况.

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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#include <stdio.h>
#include <stdlib.h>

struct N{
int value;
struct N *next;
};
typedef struct N * nodePtr;
typedef struct N node;

/**
* 根据数组创建长度为n的链表
* @param value
* @param n
* @return
*/
nodePtr buildByArray(int value[], int n){
nodePtr head = (nodePtr)malloc(sizeof(node));
nodePtr tail = head;
nodePtr t = NULL;
int i = 1;
head->next = NULL;
head->value = value[0];
tail = head;
for(i = 1; i < n; ++ i){
t = (nodePtr)malloc(sizeof(node));
t->value = value[i];
t->next = NULL;
tail->next = t;
tail = t;
}
return head;
}

/**
* 构建一个值全部为0的长度为n的链表
* @param n
* @return
*/
nodePtr buildByZeros(int n){
nodePtr head = (nodePtr)malloc(sizeof(node));
nodePtr tail = head;
nodePtr t = NULL;
int i = 1;
head->next = NULL;
head->value = 0;
tail = head;
for(i = 1; i < n; ++ i){
t = (nodePtr)malloc(sizeof(node));
t->value = 0;
t->next = NULL;
tail->next = t;
tail = t;
}
return head;
}

/**
* 在链表头部添加一个节点
* @param head
* @param value
* @return nodePtr
*/
nodePtr insertAsHead(nodePtr head, int value){
nodePtr p = (nodePtr)malloc(sizeof(node));
p->value = value;
p->next = head;
return p;
}

/**
* 在链表尾部添加一个新节点
* @param head
* @param value
* @return
*/
nodePtr insertAsTail(nodePtr head, int value){
nodePtr h = head;
nodePtr p;
while(head->next != NULL){
head = head->next;
}
p = (nodePtr)malloc(sizeof(node));
p->value = value;
p->next = NULL;
head->next = p;
return h;
}

/**
* 在指定节点后面插入一个新节点
* @param after
* @param value
* @return
*/
nodePtr insertAfter(nodePtr after, int value){
nodePtr tmp;
if(after == NULL){
return NULL;
}
tmp = (nodePtr)malloc(sizeof(node));
tmp->value = value;
tmp->next = after->next;
after->next = tmp;
return tmp;
}

/**
* 返回第一个指定值的value
* @param head
* @param value
* @return
*/
nodePtr findByValue(nodePtr head, int value){
nodePtr p = head;
while(p != NULL){
if(value == p->value){
return p;
}
p++;
}
return NULL;
}


/**
* 返回链表中的第ID个节点
* @param head
* @param id
* @return
*/
nodePtr findByIndex(nodePtr head, int id){
nodePtr p = head;
if(id < 0) return NULL;
while(id--){
if(p == NULL) break;
p = p->next;
}
return p;
}

/**
* 删除链表中第一个指定值的节点
* @param head
* @param value
* @return
*/
nodePtr delByValue(nodePtr head, int value){
nodePtr p = head;
nodePtr t;
if(head == NULL){
return NULL;
}
if(head->value == value){
p = head->next;
free(head);
return p;
}
while(p->next != NULL){
if(value == p->next->value){
t = p->next;
p->next = t->next;
free(t);
return head;
}
p++;
}
return head;
}

/**
* 删除链表中第ID个节点
* @param head
* @param id
* @return
*/
nodePtr delByIndex(nodePtr head, int id){
nodePtr t = NULL;
nodePtr p;
if(head == NULL){
return NULL;
}
p = NULL;
if(id == 0){
p = head->next;
free(head);
return p;
}
p = findByIndex(head, id-1);
if(p == NULL){
return head;
}
t = p->next;
p->next = t->next;
free(t);
return head;
}

/**
* 打印链表
* @param head
*/
void printList(nodePtr head){
while(head != NULL){
printf("%d ", head->value);
head = head->next;
}
printf("\n");
}

/**
* 删除链表, 释放空间
* @param head
*/
void freeList(nodePtr head){
nodePtr p = head;
while(p != NULL){
free(head);
head = p->next;
p = p->next;
}
}

int main(){
nodePtr head = NULL;
int values[] = {0,1,2,3,4,5,6,7,8,9,0};
head = buildByArray(values,11);
printList(head);
insertAfter(head->next->next->next,5);
printList(head);
head = delByIndex(head,0);
printList(head);
head = delByValue(head,1);
printList(head);
printList(findByValue(head, 8));
freeList(head);
return 0;
}