|
@@ -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;
|
|
|
}
|
|
|
|