-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.c
186 lines (170 loc) · 3.95 KB
/
list.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
#include <stdio.h>
#include <stdlib.h>
#include "list.h"
#include "utils.h"
/*Create a generic linked list. Return a List reference.*/
List *create_list()
{
List *list;
list = (List *)malloc(sizeof(List));
list->head = list->tail = list->current_element_addr = NULL;
list->length = 0;
return list;
}
/*Append 'data' type to the end of the list*/
void append_to_list(List *list, void *data)
{
Node *node;
node = (Node *)malloc(sizeof(Node));
node->data = data;
node->next = NULL;
if (list->head == NULL)
{
list->head = list->tail = node;
}
else
{
list->tail->next = node;
list->tail = node;
}
list->length++;
}
/*
Remove 'data' type from the list. If 'data' type does not exists,
return 1. The function argument, MUST return int
(0 or 1) and will except 2 arguments of (void *) type.
*/
int remove_from_list(List *list, void *data, int(* func_ptr)(void *, void *))
{
Node *nptr = list->head;
Node *priv_node;
while (nptr != NULL)
{
if ((*func_ptr)(data, nptr->data) == 0)
{
if (nptr == list->head)
{
list->head = list->head->next;
}
else
{
priv_node->next = nptr->next;
}
free(nptr);
list->length--;
return 0;
}
else
{
priv_node = nptr;
nptr = nptr->next;
}
}
return 1;
}
/*
Search 'data' type in a given list. If 'data' type does not exists,
return NULL. The function argument, MUST return int
(0 or 1) and will except 2 arguments of (void *) type.
*/
void *search_in_list(List *list, void *data, int(* func_ptr)(void *, void *))
{
Node *nptr = list->head;
void *result = NULL;
while (nptr != NULL)
{
if ((*func_ptr)(nptr->data, data) == 0)
{
result = nptr->data;
break;
}
else
{
nptr = nptr->next;
}
}
return result;
}
/*Get the head element fron the list*/
void *get_head_element(List *list)
{
list->current_element_addr = list->head;
return list->current_element_addr->data;
}
/*Get the next element from the list*/
void *get_next_element(List *list)
{
list->current_element_addr = list->current_element_addr->next;
if (list->current_element_addr == NULL)
{
list->current_element_addr = list->head;
return NULL;
}
return list->current_element_addr->data;
}
/*Get the current element in the list*/
Node *get_current_element_addr(List *list)
{
return list->current_element_addr;
}
/*Checking the next element in the list*/
void *check_next_element_in_list(List *list)
{
Node *nptr = list->current_element_addr;
if (nptr->next == NULL)
return NULL;
return nptr->next->data;
}
/*Add sublist into a list*/
void insert_sublist_in_list(Node *current_node, List *sub_list)
{
Node *nptr = current_node;
Node *tmp = current_node->next->next;
nptr->next = sub_list->head;
sub_list->tail->next = tmp;
}
/*Count number of element in list*/
int count_list(List *list)
{
Node *nptr = list->head;
int num_of_lines = 0;
while (nptr != NULL)
{
num_of_lines++;
nptr = nptr->next;
}
return num_of_lines;
}
/*Checking if a given list is empty*/
Bool is_list_empty(List *list)
{
if (list->head == NULL)
return TRUE;
return FALSE;
}
/*
Printing list elements. The function argument,
MUST return void and will except 1 (void *) argument.
*/
void print_list(List *list, void(* print_func_ptr)(void *))
{
Node *nptr = list->head;
while(nptr != NULL)
{
(*print_func_ptr)(nptr->data);
nptr = nptr->next;
}
}
/*Removing hole list*/
void delete_list(List *list)
{
Node *current = list->head;
Node *next;
while(current != NULL)
{
next = current->next;
free(current);
current = next;
}
free(list);
}