-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path31reverseLinkList.cpp
82 lines (71 loc) · 1.43 KB
/
31reverseLinkList.cpp
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef int ElemType;
typedef struct LNode
{
ElemType data;
struct LNode * next;
} LNode, *LinkList;
/**
* @brief 在L链表的i位置(索引)插入数据e
*
* @param L
* @param i
* @param e
* @return true
* @return false
*/
bool ListInsert(LinkList &L, int i, ElemType e) {
if (i < 1)
return false;
LNode *cur;
int j = 0;
cur = L;
while(cur != NULL && j < i-1) {
cur = cur -> next;
j++;
}
if (cur == NULL)
return false;
LNode *s = (LNode *) malloc(sizeof(LNode));
s -> data = e;
s -> next = cur -> next;
cur -> next = s;
return true;
}
bool initLinkList(LinkList &L) {
L = (LinkList) malloc(sizeof(LNode));
if (L == NULL)
return false;
L->next = NULL;
return true;
}
// 将 27 -> 16 -> 10 反转 为 10 -> 16 ->27
// 头插法
// 缓存当前结点cur,头插法insert
void reserveLinkList(LinkList &L) {
if (L == NULL) return;
if (L -> next == NULL) return;
LinkList cur = L -> next -> next;
if (cur) {
L -> next -> next = NULL;
}
while (cur != NULL) {
LinkList tem = cur -> next ;
LinkList b = L -> next;
cur -> next = b;
L -> next = cur;
cur = tem;
}
}
int main() {
LinkList linkList;
initLinkList(linkList);
ListInsert(linkList, 1, 27);
ListInsert(linkList, 2, 16);
ListInsert(linkList, 3, 10);
reserveLinkList(linkList);
// printf("%d\n", result);
return 0;
}