//slist1.h //header file for class SortedList implemented with function "myfind" #ifndef SLIST1_H #define SLIST1_H #include "list.h" class SortedList:public List { public: SortedList(); int find(Type x); void insert (Type x); private: int myfind (Type x, Node *&p, Node *&q); }; #endif