-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCListReview.c
427 lines (410 loc) · 6.27 KB
/
CListReview.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
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#include<assert.h>
#include<stdlib.h>
//C实现简单无头单链表和基本的操作
typedef int Datatype;
typedef struct ListNode
{
Datatype _data;
struct ListNode* _next;
}Node;
Node* _head = NULL;
Node* CreatNode(Datatype data)
{
Node* NewNode = (Node*)malloc(sizeof(Node));
if (NewNode == NULL)
{
perror("malloc");
return;
}
NewNode->_data = data;
NewNode->_next = NULL;
return NewNode;
}
void PushBack(Datatype data)
{
if (_head == NULL)
_head = CreatNode(data);
else
{
Node* cur = _head;
while (cur->_next)
{
cur = cur->_next;
}
cur->_next = CreatNode(data);
}
}
void PushFront(Datatype data)
{
if (_head == NULL)
_head = CreatNode(data);
else
{
Node* NewNode = CreatNode(data);
Node* NextNode = _head;
_head = NewNode;
NewNode->_next = NextNode;
}
}
void PopBack()
{
if (_head == NULL) //没有元素
{
printf("链表为空\n");
return;
}
else if (_head->_next == NULL) //只有一个元素
{
free(_head);
_head = NULL;
}
else
{
Node* cur = _head;
Node* prev = NULL;
while (cur->_next)
{
prev = cur;
cur = cur->_next;
}
prev->_next = NULL;
free(cur);
}
return;
}
void PopFront()
{
if (_head == NULL)
{
printf("链表为空\n");
return;
}
else if (_head->_next == NULL)
{
_head = NULL;
return;
}
else
{
Node* tmp = _head;
Node* newhead = _head->_next;
_head = newhead;
free(tmp);
}
return;
}
Node* Find(Datatype data) //查找某个数字
{
if (_head == NULL)
{
printf("链表为空\n");
return NULL;
}
else
{
Node* cur = _head;
while (cur)
{
if (cur->_data == data)
return cur;
cur = cur->_next;
}
printf("未找到\n");
return NULL;
}
}
void Insert(Node* pos, Datatype data) //指定位置前插入 注意要考虑到如果指定位置不存在的情况
{
if (_head == NULL)
{
printf("链表为空\n");
return;
}
if (pos == _head) //头插
{
PushFront(data);
return;
}
Node* cur = _head;
Node* prev = NULL;
while (cur)
{
if (cur == pos)
{
Node* newnode = CreatNode(data);
prev->_next = newnode;
newnode->_next = cur;
return;
}
prev = cur;
cur = cur->_next;
}
printf("未找到指定位置\n");
return;
}
void Erase(Node* pos) //指定位置删除
{
if (_head == NULL)
{
printf("链表为空\n");
return;
}
if (pos == _head)
{
PopFront();
return;
}
Node* cur = _head;
Node* prev = NULL;
//Node* nextnode = pos->_next;
while (cur)
{
if (cur == pos)
{
prev->_next = pos->_next;
free(pos);
return;
}
prev = cur;
cur = cur->_next;
}
printf("未找到指定位置\n");
return;
}
void Remove(Datatype data) //删除在链表第一次出现的该数
{
Erase(Find(data));
}
void DestoryList() //删除整个链表
{
if (_head == NULL)
return;
if (_head->_next == NULL)
{
free(_head);
_head = NULL;
return;
}
Node* cur = _head;
Node* tmp = NULL;
while (cur)
{
tmp = cur;
cur = cur->_next;
free(tmp);
}
_head = NULL;
return;
}
//***************基本的面试题部分*******************
//题目一:从尾到头打印单链表
//1.递归
void _RPrintList(Node* cur)
{
if (cur == NULL)
return;
_RPrintList(cur->_next);
printf("%d ", cur->_data);
}
//2.非递归: 利用栈(在C语言里面没有栈,所以這里這种方法很难实现)
//题目二:删除一个无头单链表的非尾结点
void TestErase(Node** pplist) //传入二级指针
{
assert(pplist);
if (*pplist == NULL)
{
printf("链表为空");
return;
}
//一个结点
if ((*pplist)->_next == NULL)
{
printf("不满足要求\n");
return;
}
//只有两个结点
if ((*pplist)->_next->_next == NULL)
{
Node* tmp = *pplist;
Node* endnode = (*pplist)->_next;
*pplist = endnode;
free(tmp);
}
//多个结点
else
{
Node* cur = *pplist;
Node* prev = NULL;
while (cur->_next->_next)
{
prev = cur;
cur = cur->_next;
}
Node* endnode = cur->_next;
prev->_next = endnode;
free(cur);
}
}
//题目三无头单链表的非头节点之前插入一个结点
void TestInsert(Node** pplist,Datatype data)
{
assert(pplist);
if (*pplist == NULL)
{
printf("链表为空\n");
return;
}
//只有一个结点
if ((*pplist)->_next == NULL)
{
printf("不满足条件\n");
return;
}
//不止一个结点,在第一个结点和第二个结点之间插入
else
{
Node* next = (*pplist)->_next;
Node* newnode = CreatNode(data);
(*pplist)->_next = newnode;
newnode->_next = next;
}
}
//题目四:单链表实现约瑟夫环
//题目五: 逆置单链表[*]
void ReverseList(Node** pplist)
{
assert(pplist);
if ((*pplist) == NULL)
return;
if ((*pplist)->_next == NULL)
return;
else
{
Node* newList = NULL;
Node* cur = *pplist;
Node* prev = NULL;
prev = cur;
newList = prev;
prev->_next = NULL;
cur = cur->_next;
while (cur)
{
Node* tmp = newList;
prev = cur;
cur = cur->_next;
newList = prev;
prev->_next = tmp;
}
*pplist = newList;
}
}
void PrintList() //打印
{
if (_head == NULL)
{
printf("链表为空\n");
return;
}
else
{
Node* cur = _head;
while (cur)
{
printf("%d ",cur->_data);
cur = cur->_next;
}
}
printf("\n");
}
//-----------------------test------------------------
void TestList()
{
/*PushBack(1);
PushBack(2);
PushBack(3);
PushBack(4);
PushBack(5);
PushBack(6);
PushFront(0);
PushFront(6);
PushFront(5);
PushFront(4);
PushFront(3);
PopBack();
PopBack();
PopBack();
PopBack();
PopBack();
PopFront();
PopFront();*/
/*PopFront();
PopFront();
PopFront();
PopFront();*/
//printf("%p ",Find(7));
/*Insert(Find(0), 1);
Insert(Find(5), 1);
Insert(Find(2), 1);
Erase(Find(0));
Erase(Find(1));
Erase(Find(1));
Erase(Find(1));
Erase(Find(1));
Erase(Find(1));
Remove(5);
Remove(6);
PrintList();
PushBack(1);
PushBack(2);
PushBack(3);
PushBack(4);
PushBack(5);
PushBack(6);
PushBack(7);
PushBack(8);
PrintList();*/
//DestoryList();
//PrintList();
// *******面试题测试******
//_RPrintList(_head);
/*TestErase(&_head);
PrintList();
TestErase(&_head);
PrintList();
TestErase(&_head);
PrintList();
TestErase(&_head);
PrintList();
TestErase(&_head);
PrintList();
TestErase(&_head);
PrintList();
TestErase(&_head);
PrintList();
TestErase(&_head);*/
//PrintList();
/*PushBack(5);
PushBack(4);
PushBack(3);
PushBack(2);
PrintList();
TestInsert(&_head, 1);
TestInsert(&_head, 1);
PrintList();*/
PushBack(0);
PushBack(1);
PushBack(2);
PushBack(3);
PushBack(4);
PushBack(5);
PrintList();
ReverseList(&_head);
PrintList();
}
int main()
{
TestList();
return 0;
}