Hey everyone I have been stuck at a question I am new to linked queues.I just wanna know how can i write a method to make it empty,copy constructor and a destructor.
1 2 3 4 5 6
class Extended_queue: public Queue {
public:
bool full( ) const;
int size( ) const;
void clear( );
};
This is what I got so far for empty method and destructor