Question:
Any good tutorials for Linked Lists in C# anywhere?
Jeff
2007-10-11 13:29:53 UTC
I, of course, have searched yahoo and google but have yet to find one I can follow along with in C#. I have no prior knowledge of linked lists but I understand their purpose. I have also heard of Arraylist() and understand that this might be my answer. Anyway, any help would be great.
Four answers:
Bill S
2007-10-11 13:57:44 UTC
Here is a good linked list tutorial.



http://cslibrary.stanford.edu/103/



These are good tutorials if you want to write your own implementation, or just want to learn about the container. If you have an application that needs this kind of container, writing your own should be your last choice.



I do not know about C# but C++ offers all of the basic containers in the Standard Template Library (STL). Java has similar template container classes.



When you understand the basics, you can do a good job of choosing the right container from those available in standard implementations.
2016-12-18 09:57:00 UTC
The content cloth approximately appropriate record is provided in lots of books, a number of those are: complete reference C -- Herbert Schildt information systems utilising C and C++ -- Tanenbaum Programming in ANSI C - E. Balagurusamy
2007-10-11 16:00:38 UTC
If you just want one to use, check out this site:



http://msdn2.microsoft.com/en-us/library/system.collections(VS.80).aspx



It lists all the standard data structures in C# and how to use them.
hi
2007-10-14 15:48:07 UTC
try this site, but actually i didn't use for C programming before, you can check

http://freecourses.8m.com/c+.htm

good luck


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...