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.
MuthuMari MPosted May 10, 2012, 10:48 AM
Linked lists are made up of nodes, where each node contains a reference to the next node in the list.
thanks.
If this post is useful then mark it as "Accepted Answer"
Kunal VaishyaPosted May 10, 2012, 7:43 AM
http://www.gamedev.net/page/resources/_/technical/general-programming/understanding-data-structures-part-1-linked-l-r1072
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/
VulpesPosted May 10, 2012, 5:26 AM
http://en.wikipedia.org/wiki/Linked_list
.NET has a generic LinkedList class in the System.Collections.Generic namespace. As you'll see from the docs, it's implemented using a doubly linked list:
http://msdn.microsoft.com/en-us/library/he2s3bh7.aspx