moving to a different computer

This commit is contained in:
2026-02-28 10:51:37 -05:00
parent 554aff2547
commit d174643ed2

View File

@@ -5,7 +5,7 @@
using namespace std;
class d_linked_list {
class graph {
struct Point {
private:
@@ -28,7 +28,7 @@ private:
public:
//class constructor
d_linked_list() : start(nullptr), end(nullptr) {};
graph() : start(nullptr), end(nullptr) {};
int rand_int() {};
void del_all_data(){};