Overview: In this lab you will extend Lab 1 to include a Search class that extends from the Strategy Design pattern single interface for implementing and analyzing the performance of the following search algorithms: BFS, DFS, Dijkstra, A*.
Code Requirements:
Algorithm src = new Search();
for (all Algo Search Types) src->Select(ALGOTYPE); for(all Graphs)
src->Load(input file type); src->Execute(); src->Stats();