浏览代码

Make path search on world copy

DricomDragon 5 年之前
父节点
当前提交
f46716668b
共有 1 个文件被更改,包括 18 次插入6 次删除
  1. 18 6
      main.cc

+ 18 - 6
main.cc

@@ -75,6 +75,17 @@ class World
 			}
 		}
 
+		// Copy constructor
+		World(const World& other)
+			:l(other.l), h(other.h), size(other.size)
+		{
+			board = new int[size]();
+
+			for (int k(0); k < size; k++) {
+				board[k] = other.board[k];
+			}
+		}
+
 		// Display the world
 		void display()
 		{
@@ -234,18 +245,19 @@ int main()
 	w.display();
 
 	// Find a path with Depth-First Search
+	World dfsWorld(w);
 	list<unsigned int> dfsPath;
 	list<unsigned int> dfsDiscovered;
-	bool exitFound = w.dfs(start, end, dfsPath, dfsDiscovered);
+	bool exitFound = dfsWorld.dfs(start, end, dfsPath, dfsDiscovered);
 
 	// Display DFS
 	cout << endl << "Depth-First Search" << endl;
 
-	w.markAll(dfsDiscovered, DISCOVERED);
-	w.markAll(dfsPath, TRACE);
-	w.markOne(start, ORIGIN);
-	w.markOne(end, TARGET);
-	w.display();
+	dfsWorld.markAll(dfsDiscovered, DISCOVERED);
+	dfsWorld.markAll(dfsPath, TRACE);
+	dfsWorld.markOne(start, ORIGIN);
+	dfsWorld.markOne(end, TARGET);
+	dfsWorld.display();
 
 	// Display DFS results
 	if (exitFound)