Newer
Older
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
#include "liste.hpp"
#include <iostream>
#include <cassert>
Liste::Liste() {
/* votre code ici */
}
Liste::Liste(const Liste& autre) {
/* votre code ici */
}
Liste& Liste::operator=(const Liste& autre) {
/* votre code ici */
return *this ;
}
Liste::~Liste() {
/* votre code ici */
}
void Liste::ajouter_en_tete(int valeur) {
/* votre code ici */
}
void Liste::ajouter_en_queue(int valeur) {
/* votre code ici */
}
void Liste::supprimer_en_tete() {
/* votre code ici */
}
Cellule* Liste::tete() {
/* votre code ici */
return nullptr ;
}
const Cellule* Liste::tete() const {
/* votre code ici */
return nullptr ;
}
Cellule* Liste::queue() {
/* votre code ici */
return nullptr ;
}
const Cellule* Liste::queue() const {
/* votre code ici */
return nullptr ;
}
int Liste::taille() const {
/* votre code ici */
return 0 ;
}
Cellule* Liste::recherche(int valeur) {
/* votre code ici */
return nullptr ;
}
const Cellule* Liste::recherche(int valeur) const {
/* votre code ici */
return nullptr ;
}
void Liste::afficher() const {
/* votre code ici */
}