Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include <string>
  4. #include <fstream>
  5.  
  6. using namespace std;
  7.  
  8. class Graphe {
  9. int nombreSommets;
  10. vector<vector<int>> v;
  11. public:
  12. Graphe(const string nom);
  13. void afficher(const string nomFichierDot);
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement