|
@@ -247,12 +247,16 @@ int main()
|
|
w.markOne(end, TARGET);
|
|
w.markOne(end, TARGET);
|
|
w.display();
|
|
w.display();
|
|
|
|
|
|
- // Display DFS result
|
|
|
|
|
|
+ // Display DFS results
|
|
if (exitFound)
|
|
if (exitFound)
|
|
cout << "SUCCESS !" << endl;
|
|
cout << "SUCCESS !" << endl;
|
|
else
|
|
else
|
|
cout << "FAILURE ..." << endl;
|
|
cout << "FAILURE ..." << endl;
|
|
|
|
|
|
|
|
+ cout << dfsDiscovered.size() << " tiles discovered;" << endl;
|
|
|
|
+ cout << dfsPath.size() << " path length.";
|
|
|
|
+
|
|
|
|
+ // End
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|