Browse Source

Create main loop for dfs

DricomDragon 5 years ago
parent
commit
98b032c292
1 changed files with 8 additions and 0 deletions
  1. 8 0
      main.cc

+ 8 - 0
main.cc

@@ -122,11 +122,19 @@ class World
 
                         bool explored[size];
 
+                        stack<unsigned int> open;
+
                         for (unsigned int k(0); k < size; k ++)
                             explored[k] = false;
 
                         explored[s0] = true;
 
+                        do {
+
+                            // todo ...
+
+                        } while (!r && !open.empty());
+
 			return r;
 		} 
 };