moving to a different computer
This commit is contained in:
4
graph.h
4
graph.h
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
class d_linked_list {
|
class graph {
|
||||||
|
|
||||||
struct Point {
|
struct Point {
|
||||||
private:
|
private:
|
||||||
@@ -28,7 +28,7 @@ private:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
//class constructor
|
//class constructor
|
||||||
d_linked_list() : start(nullptr), end(nullptr) {};
|
graph() : start(nullptr), end(nullptr) {};
|
||||||
|
|
||||||
int rand_int() {};
|
int rand_int() {};
|
||||||
void del_all_data(){};
|
void del_all_data(){};
|
||||||
|
|||||||
Reference in New Issue
Block a user