initial edits to main for input collection

This commit is contained in:
Gheiserton 2023-07-25 22:47:39 -04:00
parent 671db9465a
commit c623dbec36
2 changed files with 10 additions and 1 deletions

View file

@ -33,5 +33,12 @@ Notes
#include "digraph.h" #include "digraph.h"
int main() { int main() {
int nodes;
cout << "How many nodes will the digraph have?\nEnter number of nodes: ";
cin >> nodes;
vector<vector<int>> relations;
} }

View file

@ -33,7 +33,9 @@ public:
} }
void void removeNode(vector<graphNode*> n) {
}
}; };
#endif #endif