893dbc98
tvieuble
update projet0seg...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdio.h>
#include <stdlib.h>
#define A 26
struct node {
char lettre;
struct cell* listeFils;
};
struct cell {
struct node* arbre;
struct cell* arbreSuivant;
};
void initialisation_tab_arbre(struct node tab[]) {
|
6c8b6d76
pvernier
le debut des prob...
|
17
|
|
893dbc98
tvieuble
update projet0seg...
|
18
|
for(int i = 0; i < A; i++) {
|
6c8b6d76
pvernier
le debut des prob...
|
19
20
|
tab[i].lettre = 97+i; //ajout lettres minuscules
tab[i].listeFils = NULL;
|
893dbc98
tvieuble
update projet0seg...
|
21
|
}
|
6c8b6d76
pvernier
le debut des prob...
|
22
|
|
893dbc98
tvieuble
update projet0seg...
|
23
|
tab[A].lettre = 39;
|
6c8b6d76
pvernier
le debut des prob...
|
24
25
|
tab[A].listeFils = NULL;
|
893dbc98
tvieuble
update projet0seg...
|
26
27
28
29
|
}
void ajout_tete(char elem, struct cell** pL) {
struct cell* p;
|
6c8b6d76
pvernier
le debut des prob...
|
30
|
|
893dbc98
tvieuble
update projet0seg...
|
31
|
p = malloc(sizeof(struct cell));
|
6c8b6d76
pvernier
le debut des prob...
|
32
|
//p->arbre = malloc(sizeof(struct node));
|
893dbc98
tvieuble
update projet0seg...
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
p->arbre->lettre = elem;
p->arbreSuivant = *pL;
*pL = p;
}
void lien_listeFils(struct cell** pL) {
struct cell* p;
p = malloc(sizeof(struct cell));
(*pL)->arbre->listeFils = p;
}
struct cell* insertion(char elem, struct cell** pL) {
printf("insert\n");
|
6c8b6d76
pvernier
le debut des prob...
|
47
48
|
printf("*pL : %p\n", *pL);
printf("(*pL)->arbre : %p\n", &(*pL)->arbre);
|
893dbc98
tvieuble
update projet0seg...
|
49
50
|
if((*pL == NULL)||((*pL)->arbre->lettre > elem)) {
printf("condition1\n");
|
6c8b6d76
pvernier
le debut des prob...
|
51
|
//lien_listeFils(pL);
|
893dbc98
tvieuble
update projet0seg...
|
52
|
ajout_tete(elem, pL);
|
6c8b6d76
pvernier
le debut des prob...
|
53
|
printf("return insertion : %p\n", (*pL)->arbre->listeFils);
|
893dbc98
tvieuble
update projet0seg...
|
54
55
56
57
|
return (*pL)->arbre->listeFils;
}
else if((*pL)->arbre->lettre == elem) { printf("condition2\n"); return (*pL)->arbre->listeFils;}
else {printf("esle\n"); insertion(elem, &(*pL)->arbreSuivant); }
|
6c8b6d76
pvernier
le debut des prob...
|
58
|
|
893dbc98
tvieuble
update projet0seg...
|
59
60
61
62
63
64
65
66
67
|
}
/*void affiche_tab(struct node tab[]) {
for(int i = 0; i < 32; i++) {
printf("%c\n", tab[i].lettre);
}
}*/
void lire_fichier(FILE* fd, struct node tab_arbre_prcp[]) {
|
6c8b6d76
pvernier
le debut des prob...
|
68
|
printf("entrer lire_fichier\n");
|
893dbc98
tvieuble
update projet0seg...
|
69
70
71
|
struct cell* localisationArbre;
char motLu[50];
int i = 0;
|
6c8b6d76
pvernier
le debut des prob...
|
72
|
printf("addressentré fd: %p\n", fd );
|
893dbc98
tvieuble
update projet0seg...
|
73
74
|
if(fd!=NULL)
{
|
6c8b6d76
pvernier
le debut des prob...
|
75
|
printf("fd!=NULL\n" );
|
893dbc98
tvieuble
update projet0seg...
|
76
77
|
while(fscanf(fd, "%s", motLu)==1)
{
|
6c8b6d76
pvernier
le debut des prob...
|
78
|
printf("entrer while\n");
|
893dbc98
tvieuble
update projet0seg...
|
79
80
81
82
|
if((motLu[i] >= 'a') && (motLu[i] <= 'z')) localisationArbre = tab_arbre_prcp[motLu[0]-97].listeFils;
if(motLu[i] == 39) localisationArbre = tab_arbre_prcp[A].listeFils; //A = derniere case du tab
|
6c8b6d76
pvernier
le debut des prob...
|
83
|
printf("avant while : localisation : %p\n", localisationArbre);
|
893dbc98
tvieuble
update projet0seg...
|
84
85
86
|
while(motLu[i] != '\0')
{
i += 1;
|
6c8b6d76
pvernier
le debut des prob...
|
87
|
printf("lettre lue : %c address : %p\n", motLu[i], localisationArbre);
|
893dbc98
tvieuble
update projet0seg...
|
88
|
localisationArbre = insertion(motLu[i], &localisationArbre);
|
6c8b6d76
pvernier
le debut des prob...
|
89
|
printf("localisation apres : %p\n", localisationArbre);
|
893dbc98
tvieuble
update projet0seg...
|
90
91
92
93
94
95
96
97
98
99
100
101
|
printf("\n");
}
printf("\n");
}
fclose(fd);
printf("fin lire fichier\n");
}
}
int main(int argc, char* argv[]) {
FILE* fd;
|
6c8b6d76
pvernier
le debut des prob...
|
102
|
fd=NULL;
|
893dbc98
tvieuble
update projet0seg...
|
103
|
|
6c8b6d76
pvernier
le debut des prob...
|
104
105
106
107
108
109
|
struct node tab_arbre[A+1];
//struct node Arbre;
//char lettre;
printf("etape1\n");
if(argc>1) fd = fopen(argv[1], "r");
|
893dbc98
tvieuble
update projet0seg...
|
110
|
|
6c8b6d76
pvernier
le debut des prob...
|
111
|
printf("etape2\n");
|
893dbc98
tvieuble
update projet0seg...
|
112
|
initialisation_tab_arbre(tab_arbre);
|
6c8b6d76
pvernier
le debut des prob...
|
113
114
115
116
|
printf("tab_arbre[0].listeFils: %p \n", tab_arbre[0].listeFils);
|
893dbc98
tvieuble
update projet0seg...
|
117
|
lire_fichier(fd, tab_arbre);
|
6c8b6d76
pvernier
le debut des prob...
|
118
|
printf("tab_arbre[0].listeFils->arbre->lettre : %c\n", tab_arbre[0].listeFils->arbre->lettre);
|
893dbc98
tvieuble
update projet0seg...
|
119
120
121
122
123
|
//scanf("%c", &lettre);
//insertion(lettre, &(Arbre.listeFils));
//printf("lettre : %c\n", Arbre.listeFils->arbre->lettre);
return 0;
}
|