瀏覽代碼

Merge branch 'bfs-queue'

DricomDragon 5 年之前
父節點
當前提交
b38a5105a9
共有 1 個文件被更改,包括 4 次插入6 次删除
  1. 4 6
      main.cc

+ 4 - 6
main.cc

@@ -201,13 +201,12 @@ class World
 
 					if (!explored[neighbour]) {
 						open.push(neighbour);
+						explored[neighbour] = true;
 						previous[neighbour] = current;
 					}
 				}
 
 				// Current tile is now processed
-				explored[current] = true;
-
 				discovered.push_back(current);
 
 				// Stop if target found
@@ -255,7 +254,7 @@ class World
 			explored[origin] = true;
 
 
-			stack<unsigned int> open;
+			queue<unsigned int> open;
 			open.push(origin);
 
 			int current;
@@ -264,7 +263,7 @@ class World
 			unsigned int nbSuccs;
 
 			do {
-				current = open.top();
+				current = open.front();
 				open.pop();
 
 				nbSuccs = successors(current, succs);
@@ -274,13 +273,12 @@ class World
 
 					if (!explored[neighbour]) {
 						open.push(neighbour);
+						explored[neighbour] = true;
 						previous[neighbour] = current;
 					}
 				}
 
 				// Current tile is now processed
-				explored[current] = true;
-
 				discovered.push_back(current);
 
 				// Stop if target found