瀏覽代碼

Remove origin and target from path and discovered

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

+ 6 - 0
main.cc

@@ -213,12 +213,18 @@ class World
 
 			} while (!targetIsReached && !open.empty());
 
+			// Remove origin and target
+			discovered.pop_front();
+			discovered.pop_back();
+
 			// Build path
 			if (targetIsReached) {
 				do {
 					path.push_back(current);
 					current = previous[current];
 				} while (current != origin);
+
+				path.pop_front();
 			}
 
 			return targetIsReached;