-
Notifications
You must be signed in to change notification settings - Fork 0
/
liste_doublement_chaine.c
155 lines (131 loc) · 3.77 KB
/
liste_doublement_chaine.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "projet.h"
#ifndef PROJET
#define PROJET
/* Represents a node in a doubly-linked list. */
typedef struct element {
struct element *precedent;
struct element *suivant;
Processus *data;
} Element;
/***************************************************************************
* List Functions
***************************************************************************/
/* Initialises a node in a doubly-linked list, returning a pointer to the node. */
Element* listeNouvelElement(Processus* p){
Element *element = (Element*) malloc(sizeof(Element));
element->suivant = NULL;
element->precedent = NULL;
element->data = p;
return element;
}
/* Get the head of the list. */
Element *listeValeurTete(Element *e) {
if (e == NULL) return NULL;
Element *tete = e;
Element *precedent = tete->precedent;
while (precedent) {
tete = precedent;
precedent = tete->precedent;
}
return tete;
}
/* Get the tail of the list. */
Element *listeValeurQueue(Element *e) {
if (e == NULL) return NULL;
Element *queue = e;
Element *suivant = queue->suivant;
while (suivant) {
queue = suivant;
suivant = queue->suivant;
}
return queue;
}
/* Free the memory of a node, including its data contents. */
void listeLibererElement(Element *e) {
//free(e->data);
free(e);
}
void listeCopierElement(Element** dest, Element** source){
*dest = *source;
(*dest)->data = (*source)->data;
(*dest)->precedent = (*source)->precedent;
(*dest)->suivant = (*source)->suivant;
}
/* Insert a node on to the head of the list. Returns a pointer to the added
* node.
*/
Element* listeAjouterTete(Element *liste, Processus* p) {
if (!liste){
return listeNouvelElement(p);
} else {
Element *tete = listeValeurTete(liste);
Element* nouvel_element = listeNouvelElement(p);
tete->precedent = nouvel_element;
nouvel_element->suivant = tete;
return nouvel_element;
}
}
/* Insert a node on to the tail of the list. Returns a pointer to the added
* node.
*/
Element *listeAjouterQueue(Element *liste, Processus* p) {
if (!liste){
return listeNouvelElement(p);
} else {
Element *queue = listeValeurQueue(liste);
Element* nouvel_element = listeNouvelElement(p);
queue->suivant = nouvel_element;
nouvel_element->precedent = queue;
return listeValeurTete(nouvel_element);
}
}
Element* listeSupprimerTete(Element *liste){
if (!liste){
return NULL;
} else {
Element* tete = listeValeurTete(liste);
if (tete->suivant){
Element* nouvelle_tete = tete->suivant;
nouvelle_tete->precedent = NULL;
listeLibererElement(tete);
return nouvelle_tete;
} else {
listeLibererElement(liste);
return NULL;
}
}
}
Element* listeSupprimerQueue(Element *liste){
if (!liste){
return NULL;
} else {
Element* queue = listeValeurQueue(liste);
if (queue->precedent){
Element* nouvelle_queue = queue->precedent;
nouvelle_queue->suivant = NULL;
listeLibererElement(queue);
return listeValeurTete(liste);
} else {
listeLibererElement(liste);
return NULL;
}
}
}
void printListeProcessus(Element *node){
Element *curr = listeValeurTete(node);
int count = 0;
while (curr) {
if (curr->data) {
Processus *p = (Processus *)curr->data;
printf("P: %d, tps exec: %d; ", p->mon_pid, p->temps_exec);
}
curr = curr->suivant;
count++;
}
printf("\n");
}
#endif