-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathList.c
More file actions
102 lines (83 loc) · 1.98 KB
/
Copy pathList.c
File metadata and controls
102 lines (83 loc) · 1.98 KB
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
#include "List.h"
#include <string.h>
void InitList(ListNode_t *head)
{
head->value = (char *) malloc(sizeof(char));
strcpy(head->value, "*");
head->next = NULL;
}
void ListAdd(ListNode_t *head, char *value)
{
if(strcmp(value, "") == 0) return;
// if(ListSearch(head, value)) return;
ListNode_t * current = head;
while (current->next != NULL) {
current = current->next;
}
current->next = (ListNode_t *) malloc(sizeof(ListNode_t));
current->next->value = (char *) malloc(sizeof(char) * strlen(value));
strcpy(current->next->value, value);
current->next->next = NULL;
}
void ListPrint(ListNode_t *head)
{
ListNode_t *current = head;
while (current != NULL) {
if (strcmp(current->value, "*") != 0)
printf("%s\n", current->value);
current = current->next;
}
}
int ListSearch(ListNode_t *head, char *value)
{
ListNode_t *current = head;
while (current != NULL) {
if (strcmp(current->value, value) == 0)
{
return 1;
}
current = current->next;
}
return 0;
}
int ListContains(ListNode_t *head, char *value)
{
ListNode_t *current = head;
while (current != NULL) {
if (strstr(current->value, value) != NULL)
return 1;
current = current->next;
}
return 0;
}
int ListRemove(ListNode_t *head, char *value)
{
ListNode_t *current = head, *prev;
while (current != NULL && strcmp(current->value, value) != 0) {
prev = current;
current = current->next;
}
if (current == NULL)
return -1;
prev->next = current->next;
free(current->value);
free(current);
return 1;
}
ListNode_t *GetItem(ListNode_t *head)
{
return head->next;
}
int ListIsEmpty(ListNode_t *head)
{
return head->next == NULL;
}
void FreeList(ListNode_t *head)
{
if(head != NULL)
{
FreeList(head->next);
free(head->value);
free(head);
}
}