/* * TDDD86 Trailblazer * This file declares the functions you will write in this assignment. * * Please do not modify this provided file. Your turned-in files should work * with an unmodified version of all provided code files. * * Author: Marty Stepp * Slight modifications by Tommy Farnqvist */ #ifndef _trailblazer_h #define _trailblazer_h #include #include "BasicGraph.h" vector depthFirstSearch(BasicGraph& graph, Node* start, Node* end); vector breadthFirstSearch(BasicGraph& graph, Node* start, Node* end); vector dijkstrasAlgorithm(BasicGraph& graph, Node* start, Node* end); vector aStar(BasicGraph& graph, Node* start, Node* end); #endif