// This is the CPP file you will edit and turn in. // Also remove these comments here and add your own, along with // comments on every function and on complex code sections. // TODO: write comment header for this file; remove this comment #include "costs.h" #include "trailblazer.h" // TODO: include any other headers you need; remove this comment using namespace std; vector depthFirstSearch(BasicGraph& graph, Vertex* start, Vertex* end) { // TODO: implement this function; remove these comments // (The function body code provided below is just a stub that returns // an empty vector so that the overall project will compile. // You should remove that code and replace it with your implementation.) vector path; return path; } vector breadthFirstSearch(BasicGraph& graph, Vertex* start, Vertex* end) { // TODO: implement this function; remove these comments // (The function body code provided below is just a stub that returns // an empty vector so that the overall project will compile. // You should remove that code and replace it with your implementation.) vector path; return path; } vector dijkstrasAlgorithm(BasicGraph& graph, Vertex* start, Vertex* end) { // TODO: implement this function; remove these comments // (The function body code provided below is just a stub that returns // an empty vector so that the overall project will compile. // You should remove that code and replace it with your implementation.) vector path; return path; } vector aStar(BasicGraph& graph, Vertex* start, Vertex* end) { // TODO: implement this function; remove these comments // (The function body code provided below is just a stub that returns // an empty vector so that the overall project will compile. // You should remove that code and replace it with your implementation.) vector path; return path; }