I have a requirement for linked list type traversing in c#, What structure i should use for my project Please suggest..
+5
A:
eh, a System.Collections.Generic.LinkedList<T>
maybe? See http://msdn.microsoft.com/en-us/library/he2s3bh7.aspx
Hans Kesting
2009-10-28 08:15:32
Unless requirement is to reinvent the wheel - it's better to use ready structure.
Arnis L.
2009-10-28 08:20:49
+1
A:
Here is some examples
astander
2009-10-28 08:17:25
And a book - Data structures and algorithms using c#, http://www.amazon.com/Data-Structures-Algorithms-Using-C/dp/0521670152
Bolek Tekielski
2009-10-28 09:18:24