Update 'TP/fonctionVisuelGraphe.c'
This commit is contained in:
parent
3c49cddcc3
commit
32338a90e8
@ -28,6 +28,8 @@ void visuelGraphe(graphe g){
|
||||
|
||||
}
|
||||
|
||||
|
||||
//Version si le graphe est une matrice d'adjacence
|
||||
for(i=0;i<g.ordre;i++){
|
||||
for(j=0;j<g.ordre;j++){
|
||||
if(g.adj[i][j]!=0){
|
||||
@ -35,6 +37,17 @@ void visuelGraphe(graphe g){
|
||||
}
|
||||
}
|
||||
}
|
||||
//Version à utiliser si le graph est un tableau de listes chaînées
|
||||
/*
|
||||
maillon* read;
|
||||
for(i=0;i<g.ordre;i++){
|
||||
read=g.voisins[i];
|
||||
while(read!=NULL){
|
||||
DessinerSegment(cX[i],cY[i],cX[read->valeur],cY[read->valeur]);
|
||||
read=read->suivant;
|
||||
}
|
||||
}
|
||||
*/
|
||||
Touche();
|
||||
FermerGraphique();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user