diff --git a/Project12/Project12.cpp b/Project12/Project12.cpp index 8c48e87..bb4eed8 100644 --- a/Project12/Project12.cpp +++ b/Project12/Project12.cpp @@ -33,5 +33,12 @@ Notes #include "digraph.h" int main() { + int nodes; + + cout << "How many nodes will the digraph have?\nEnter number of nodes: "; + cin >> nodes; + + vector> relations; + } \ No newline at end of file diff --git a/Project12/digraph.h b/Project12/digraph.h index c6b0ae9..c2c0bdc 100644 --- a/Project12/digraph.h +++ b/Project12/digraph.h @@ -33,7 +33,9 @@ public: } - void + void removeNode(vector n) { + + } }; #endif \ No newline at end of file