hi
we want to make a link list application program with the help of java langauge.
Loading
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 Jan 19, 2012, 7:13 AM
Linked Lists are a very common way of storing arrays of data. The major benefit of linked lists is that you do not specify a fixed size for your list. The more elements you add to the chain, the bigger the chain gets.
There is more than one type of a linked list, although for the purpose of this tutorial, we'll stick to singly linked lists (the simplest one).
Refer
http://www.mycstutorials.com/articles/data_structures/linkedlists
Thanks