Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #ifndef GRAPHE_H
  2. #define GRAPHE_H
  3.  
  4. typedef struct{
  5.     int *arcList;
  6.     int *nodeState;
  7.     int *lp;
  8.     int nbNode;
  9.     int nbArc;
  10.     int *weight;
  11. }graph_st;
  12.  
  13.  
  14. graph_st * graphRead(char * filename);
  15. int graphSave(graph_st *g, char * filename);
  16. void graphPrint(graph_st *g);
  17. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement