Advertisement
eduardovp97

GrafoMatriz.h

Dec 2nd, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. #ifndef GRAFO_H
  2. #define GRAFO_H
  3.  
  4. typedef struct g{
  5.     int matrx[20][20];
  6.     int n;
  7. }TGrafo;
  8.  
  9. void crearGrafo(TGrafo *grafo);
  10. void insertarVertice(TGrafo *grafo);
  11. void insertarArista(TGrafo *grafo, int x, int y);
  12. int verificarVertice(TGrafo* grafo);
  13.  
  14. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement