//------------------------------------------------------------------- // File :search.h // Author :Alicia Thorsen // Course :CS1129 // // Prototypes for functions to find a word on a Boggle board //------------------------------------------------------------------- #ifndef SEARCH_H #define SEARCH_H #include "board.h" #include using namespace std; //Searches the board for the string and returns true if found bool findWord(char [][SIZE], string); //Searches recursively from a given location bool exploreLocation(string, int, int, int, char [][SIZE], bool [][SIZE]); //Searches all directions for the rest of the word. bool exploreAllLocations(string, int, int, int, char [][SIZE], bool [][SIZE]); //Marks all Boggle tiles as unused void reset(bool [][SIZE]); #endif