vote up 1 vote down star

I need a circular linked list, so I am wondering if LinkedList is a circular linked list?

flag

56% accept rate
1  
Why do you need a circular linked list? are there specific operation you plan to use your collection for? – Dror Helper Jun 22 at 16:47
-1 as the winner of today's RTFM award. – John Saunders Jun 22 at 16:49
@John, FYI I read the docs, but if you knew anything, you would know this is a valid question to ask, considering LinkedList implementations vary greatly. – Joan Venge Jun 22 at 16:51
Ok, I'll withdraw the -1 until you specify what you mean by circular linked list, and why the MSDN documentation didn't make that clear to you. That way, we'll also get to tell Microsoft how to fix the documentation. – John Saunders Jun 22 at 16:58
Fair enough. I guess I didn't really trust if MS used the term correctly. You know sometimes the claims for the BCL aren't valid. Minor but still wanted to be sure. – Joan Venge Jun 22 at 17:17

3 Answers

vote up 4 vote down

If you need a circular data structure, have a look at the C5 generic collections library. They have any collection that's imaginably useful in there, including a circular queue (which might help you).

link|flag
vote up 5 vote down

No. It is a doubly linked list, but not a circular linked list. See MSDN for details on this.

LinkedList<T> makes a good foundation for your own circular linked list, however. But it does have a definite First and Last property, and will not enumerate around these, which a proper circular linked list will.

link|flag
vote up 2 vote down

No, its not. See MSDN

link|flag
First yes, now no.... you are confusing doubly linked with circular. – leppie Jun 22 at 16:49
Yes! Sorry. Fixed now. – Lucas Jones Jun 22 at 16:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.