-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistlseo.c
81 lines (79 loc) · 1.6 KB
/
listlseo.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
#include <stdio.h>
#include <stdlib.h>
#include "listlseo.h"
void create(list *l)
{
l->start = NULL;
l->end = NULL;
}
int insert(list *l, int data)
{
struct node *aux, *previous, *current;
aux = (struct node *) malloc(sizeof(struct node));
if(aux != NULL)
{
aux->data = data;
aux->next = NULL;
previous = NULL;
current = l->start;
while(current != NULL && data > current->data)
{
previous = current;
current = current->next;
}
if(previous == NULL)
{
aux->next = l->start;
l->start = aux;
return TRUE;
}
else
{
previous->next = aux;
aux->next = current;
return TRUE;
}
}
else
{
return FALSE;
}
}
int removee(list *l, int data)
{
struct node *aux, *previous, *current;
aux = l->start;
if(aux != NULL && data == aux->data)
{
l->start = aux->next;
free(aux);
return TRUE;
}
else
{
previous = l->start;
current = l->start->next;
while(current != NULL && current->data != data)
{
previous = current;
current = current->next;
}
if(current != NULL)
{
aux = current;
previous->next = aux->next;
free(aux);
l->end = current;
}
else
return FALSE;
}
}
void showList(list l)
{
while(l.start != NULL)
{
printf("\n%d", l.start->data);
l.start = l.start->next;
}
}