Data Structures
•
Circular Linked list...
•
private:
•
node * head;
•
node * tail;
//???helpful?
•
There is nothing in an ordered list that
will benefit from the last node pointing to
the first node
•
A circular linked list will require
additional code to manage, with no
additional benefits
•