瀏覽代碼

Display if DFS succeeded to reach the target tile

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

+ 8 - 0
main.cc

@@ -229,8 +229,16 @@ int main()
 	cout << endl << "Depth-First Search" << endl;
 
 	w.markAll(dfsPath);
+	w.markOne(start, ORIGIN);
+	w.markOne(end, TARGET);
 	w.display();
 
+	// Display DFS result
+	if (exitFound)
+		cout << "DFS succeeded to reach the target" << endl;
+	else
+		cout << "FAILURE : DFS failed to reach target" << endl;
+
 	return 0;
 }