// destroy all in the elements in a queue void Tq::clear() { cell *p; while (first != 0) { p = first; first = first->next; delete p; } } /* End of File */