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
| #include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <windows.h>
/*procedure pour afficher un tableau d'entiers*/
void afficher_tab(int t[])
{
for(int k=0;k<9;k++)
{printf("%d",t[k]);}
}
//structure frontiere
struct noeudf {
int grille[9];
int niv;
struct noeudf *suiv;
};
typedef struct noeudf* frontiere;
//creation noeud f
frontiere creation_n_f(int vval[])
{ frontiere e = NULL ;
e = new(noeudf);
if(e!=NULL) {
for(int i=0;i<9;i++){e->grille[i] = vval[i] ;}
e->suiv = NULL ;
}
return e ;
}
/*insert en queu */
void enfiler_f_n(frontiere* l,frontiere* el)
{ frontiere* p,q=NULL ;
if(*l==NULL) {
l =el;
}
else {
q = *l ;
while(q->suiv!=NULL) q = q->suiv ;
q->suiv = *el ;
}
}
/*defiler */
frontiere defiler_f_n(frontiere* l)
{
frontiere q = *l ;
if(q!=NULL) {
return q;
}
}
main()
{
int goal[] = {1,2,3,4,5,6,7,8,0};
frontiere n=creation_n_f(goal);
frontiere f;
enfiler_f_n(&f,&n);
frontiere pe=defiler_f_n(&f);
printf("%d",pe->grille[0]);
getch();
} |
Partager