Circular Linked List: Typedef String Elem Class Cnode (
Circular Linked List: Typedef String Elem Class Cnode (
CircleList::CircleList( ) // constructor
: cursor(NULL) { }
CircleList::˜CircleList( ) // destructor
{ while (!empty( )) remove( ); }