projet0segfault.c
2.68 KB
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
#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[]) {
for(int i = 0; i < A; i++) {
tab[i].lettre = 97+i; //ajout lettres minuscules
}
tab[A].lettre = 39;
/*for(int i = 0; i < 8; i++) {
tab[i+26].lettre = 130+i; //ajout caractères spéciaux
}*/
}
void ajout_tete(char elem, struct cell** pL) {
struct cell* p;
p = malloc(sizeof(struct cell));
p->arbre = malloc(sizeof(struct node));
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");
printf("*pL : %d\n", *pL);
if((*pL == NULL)||((*pL)->arbre->lettre > elem)) {
printf("condition1\n");
lien_listeFils(pL);
ajout_tete(elem, pL);
printf("return insertion : %d\n", (*pL)->arbre->listeFils);
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); }
}
/*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[]) {
struct cell* localisationArbre;
char motLu[50];
int i = 0;
if(fd!=NULL)
{
while(fscanf(fd, "%s", motLu)==1)
{
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
printf("avant while : localisation : %d\n", localisationArbre);
while(motLu[i] != '\0')
{
i += 1;
printf("lettre lue : %c address : %d\n", motLu[i], localisationArbre);
localisationArbre = insertion(motLu[i], &localisationArbre);
printf("localisation apres : %d\n", localisationArbre);
printf("\n");
}
printf("\n");
}
fclose(fd);
printf("fin lire fichier\n");
}
}
int main(int argc, char* argv[]) {
FILE* fd;
struct node tab_arbre[A];
struct node Arbre;
char lettre;
if(argc>1) fd = fopen(argv[1], "r");
Arbre.listeFils = NULL;
initialisation_tab_arbre(tab_arbre);
lire_fichier(fd, tab_arbre);
printf("tab_arbre[0].listeFils->arbre->lettre : %c\n", tab_arbre[3].listeFils->arbre->lettre);
//scanf("%c", &lettre);
//insertion(lettre, &(Arbre.listeFils));
//printf("lettre : %c\n", Arbre.listeFils->arbre->lettre);
return 0;
}