plz tell me about linked list
plz tell me about linked list
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted May 10, 2012, 1:55 PM
Please refer the below links
http://www.c-sharpcorner.com/UploadFile/jeradus/UsingLinkedListInCS11102005005525AM/UsingLinkedListInCS.aspx
http://msdn.microsoft.com/en-us/library/he2s3bh7.aspx
http://www.dotnetperls.com/linkedlist
http://www.functionx.com/csharp1/examples/linkedlist.htm
http://www.codeproject.com/Articles/67199/Using-the-Linked-List-via-C
Thanks
SenthilkumarPosted May 10, 2012, 7:38 AM
Linked lists are a way to store data with structures so that the programmer can automatically create a new place to store data whenever necessary. Specifically, the programmer writes a struct or class definition that contains variables holding information about something, and then has a pointer to a struct of its type. Each of these individual struct or classes in the list is commonly known as a node.
For concept tutorials,
http://www.cprogramming.com/tutorial/lesson15.html
Linked List in C#,
http://www.c-sharpcorner.com/UploadFile/jeradus/UsingLinkedListInCS11102005005525AM/UsingLinkedListInCS.aspx
Linked List in C,
http://skasturi.wordpress.com/2010/11/13/linked-list-basics/