-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcycleList.c
181 lines (179 loc) · 2.86 KB
/
cycleList.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
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
typedef struct node {
int value;
struct node *next;
}list, *List;
/**
* 寻找环的第一次相遇点,如果没有环返回NULL
*/
List findFirstPoint(List head)
{
if (head == NULL)
return NULL;
List fast = head, slow = head;
while (fast && fast->next) {
fast = fast->next->next;
slow = slow->next;
if (fast == slow)
return fast;
}
return NULL;
}
/**
* 判断链表是否存在环
*/
bool hasCycle(List head)
{
return findFirstPoint(head) != NULL;
}
/**
* 若存在环,返回环入口点,否则返回NULL
*/
List detectCycle(List head)
{
List p = findFirstPoint(head);
if (p == NULL)
return NULL;
List q = head;
while (p != q) {
p = p->next;
q = q->next;
}
return p;
}
/**
* 如果存在环,返回环的长度,否则返回0
*/
int lengthOfCycle(List head)
{
List p = findFirstPoint(head);
if (p == NULL)
return 0;
List slow = p, fast = p;
int len = 0;
do {
len++;
fast = fast->next->next;
slow = slow->next;
} while(fast != slow);
return len;
}
/**
* 根据数组构造链表,无环,最后一个节点的next指向NULL,返回最后一个节点
*/
List make_list(List *head, int a[], int n)
{
if (n < 1) {
*head = NULL;
return NULL;
}
List p = malloc(sizeof(*p));
p->next = NULL;
p->value = a[0];
*head = p;
for (int i = 1; i < n; ++i) {
List t = malloc(sizeof(*t));
t->value = a[i];
t->next = NULL;
p->next = t;
p = t;
}
return p;
}
/**
* 返回链表头指针
*/
List first(List head)
{
return head;
}
/**
* 针对无环链表,返回最后一个节点
*/
List lastWithoutCycle(List head)
{
List p = head;
if (p == NULL)
return NULL;
while (p->next) {
p = p->next;
}
return p;
}
/**
* 返回链表最后一个节点,能够处理有环的情况
*/
List last(List head)
{
List cycle = detectCycle(head);
if (cycle == NULL)
return lastWithoutCycle(head);
List p = cycle;
while (p->next != cycle) {
p = p->next;
}
return p;
}
/**
* 从链表中查找第一个值等于key的节点
*/
List find(List head, int key)
{
List p = head;
List l = last(head);
while (p) {
if (p->value == key)
return p;
if (p == l)
break;
p = p->next;
}
return NULL;
}
/**
* 判断该链表中是否存在值为key的节点
*/
bool contains(List head, int key)
{
return find(head, key) != NULL;
}
int length(List head)
{
int len = 0;
List p = head;
List l = last(head);
while (p) {
len++;
if (p == l)
break;
p = p->next;
}
return len;
}
void print_node(List p)
{
if (p == NULL)
printf("null\n");
else
printf("%d\n", p->value);
}
void print(List p)
{
while (p) {
printf("%d ", p->value);
p = p->next;
}
printf("\n");
}
int main(int argc, char **argv)
{
int a[] = {1,2,3,4,5};
List head;
List l = make_list(&head, a, 5);
l->next = find(head, 2);
print_node(find(head, 4));
printf("%d\n", length(head));
return 0;
}