//Qustion#1: What are the member functions (i.e. methods) in the list class?

//Qustion#2: What are the data members in the list class?

//Qustion#3: What is the constructor of the list class?

//Qustion#4: What is the destructor of the list class?

 

struct listNode{   int value;   listNode * next;};

 

class list

{   public:    

               list();    

               ~list();    

               void display();    

               bool search(int Val);    

               void insert(int Val);    

               void insertInOrder(int Val);    

               void remove(int Val);  

    private:

               listNode * head;

};