Advertisement
Guest User

Untitled

a guest
Dec 16th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. #include <SFML\Graphics.hpp>
  2.  
  3. class Graph
  4. {
  5. private:
  6.  
  7.     int **Massive, **koord;
  8.     int *c, *path;
  9.     int n, v0 = 0;
  10.     bool key = false;
  11.  
  12.     int GamiltonovCycle(int k);
  13.  
  14.  
  15. public:
  16.     Graph(int **Nmassive, int k, float Center_x, float Center_y);
  17.  
  18.     void filling(int **Nmassive, int k, float Center_x, float Center_y);
  19.  
  20.     void WindowDraw(sf::RenderWindow &window, sf::Font &font);
  21.  
  22.     void DrawGamilton(sf::RenderWindow &windwo, sf::Font &font);
  23.  
  24.     void MassiveG();   
  25.  
  26.     void inspection();
  27.  
  28.     ~Graph();
  29. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement