circular list

views updated

circular list A linked list in which the last item contains a link to the first. This allows access to all of the list from any starting point. Circular lists are most useful if the pointer to the list links to the last node, allowing easy access to both ends of the list. See also ring.