//search.h contains all common lookup algorithms
// Lookup function // seqsearch (Const Int Arr [], int first, int laast, int target) Template  // Scan the subscript range first <= i  Return i; // i is the subscript of matching value, or if there is no match, i = last} // Template function find_last_of () Implementation Template  // Sweep the subscript range first <= i  // Differential search algorithm function BINSearch () Implementation Template  Int Origlast = last; // Save the initial value of Last While (first 
