#ifndef SORT_AND_SEARCH #define SORT_AND_SEARCH #include using namespace std; const int SEARCH_NOT_FOUND = -1; int Find(const string ary[], size_t size, string key); void InsertionSort(string ary[], size_t size); #endif