-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLists.c
201 lines (184 loc) · 4.12 KB
/
Lists.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
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include "Lists.h"
#include "Arrays.h"
typedef struct ListNode
{
int data;
struct ListNode* next;
}ListNode;
typedef struct List
{
int count;
ListNode* first;
}List;
ListLink list_initialize()
{
ListLink pointer = malloc(sizeof(List));
pointer->count = 0;
pointer->first = NULL;
return pointer;
}
void list_enlist(ListLink pointer, int data) //create 1 at start
{
ListNodeLink temp;
temp = malloc(sizeof(ListNode)); //Create a node as a "package"
temp->data = data;
temp->next = NULL;
if(pointer->count == 0)
{
pointer->first = temp;
pointer->count++;
}
else
{
temp->next = pointer->first;
pointer->first = temp;
pointer->count++;
}
}
int list_delist(ListLink pointer) //delete 1 at end
{
if(pointer->count == 0)
{
printf("ERROR. The List is empty, cant deList a node\n");
return -1;
}
else if(pointer->count == 1)
{
int temp = pointer->first->data;
free(pointer->first);
pointer->first = NULL;
pointer->count--;
return temp;
}
else
{
ListNodeLink cursor = pointer->first;
for(int i = 2 ; i < pointer->count ; i++)
cursor = cursor->next;
int temp = cursor->next->data;
free(cursor->next);
cursor->next = NULL;
pointer->count--;
return temp;
}
}
void list_append(ListLink pointer, int data)//create 1 at end
{
ListNodeLink temp;
temp = malloc(sizeof(ListNode)); //Create a node as a "package"
temp->data = data;
temp->next = NULL;
if(pointer->count == 0)
{
pointer->first = temp;
pointer->count++;
}
else
{
ListNodeLink cursor = pointer->first;
while(cursor->next != NULL)
cursor = cursor->next;
cursor->next = temp;
pointer->count++;
}
}
int list_delete(ListLink pointer)//delete 1 at start
{
if(pointer == NULL)
{
printf("ERROR. The list is empty, cant delete a node\n");
return -1;
}
else if(pointer->count == 1)
{
int temp = pointer->first->data;
free(pointer->first);
pointer->first = NULL;
pointer->count--;
return temp;
}
else
{
ListNodeLink temp = pointer->first->next;
int data = pointer->first->data;
free(pointer->first);
pointer->first = temp;
pointer->count--;
return data;
}
}
ListLink list_destroy(ListLink pointer)//delete all
{
int loops = pointer->count;
for(int i = 0 ; i < loops ; i++)
list_delist(pointer);
free(pointer);
pointer = NULL;
return pointer;
}
void list_print(ListLink pointer)
{
if ( !pointer )
{
printf("NULL\n");
}
else
{
ListNodeLink temp = pointer->first;
for(int i=0 ; i < pointer->count ; i++)
{
printf("%d -> ",temp->data);
temp = temp->next;
}
printf("NULL\n");
}
}
void list_reverse(ListLink pointer)
{
ListNodeLink previous = NULL;
ListNodeLink current = pointer->first;
ListNodeLink next = NULL;
while( current != NULL)
{
next = current->next;
current->next = previous;
previous = current;
current = next;
}
pointer->first = previous;
}
ListLink list_copy(ListLink pointer)
{
ListLink new = list_initialize();
for(int i = 0 ; i < pointer->count ; i++)
{
int temp = list_delist(pointer);
list_enlist(new,temp);
list_enlist(pointer, temp);
}
return new;
}
ArrayInt list_to_array(ListLink pointer)
{
int n = pointer->count;
int* array = malloc(n*sizeof(int));
for(int i = 0 ; i < n ; i++)
{
array[i] = list_delist(pointer);
}
return array;
}
void list_sort(ListLink pointer)
{
int n = pointer->count;
int* array = list_to_array(pointer);
array_bubblesort(array, n);
for(int i = 0 ; i < n ; i++)
{
list_enlist(pointer,array[i]);
}
list_reverse(pointer); //reverse because its in desceding order
}