Hi,

What would be the best way to keep a list size from being no greater than a specified amount.

For example, if I update my list and the list size goes over a limit a node is deleted from the end of the list.

Would it be better implementing a circular list or a doubly linked list?

I have tried to implement the latter but can't work out how to keep track of the tail.

Cheers