What's the best way to make a linked list in Java?
feedback
|
closed as not constructive by Will♦ Jan 3 at 20:21
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
The obvious solution to developers familiar to Java is to use the LinkedList class already provided in java.util. Say, however, you wanted to make your own implementation for some reason. Here is a quick example of a linked list that inserts a new link at the beginning of the list, deletes from the beginning of the list and loops through the list to print the links contained in it. Enhancements to this implementation include making it a double-linked list, adding methods to insert and delete from the middle or end, and by adding get and sort methods as well. Note: In the example, the Link object doesn't actually contain another Link object - nextLink is actually only a reference to another link.
| |||||||||||||
feedback
|
|
Java has a LinkedList implementation, that you might wanna check out. You can download the JDK and it's sources at java.sun.com. | |||||||
feedback
|
|
Use java.util.LinkedList. Like this:
| ||||
|
feedback
|
|
Its much better to use java.util.LinkedList, because it's probably much more optimized, than the one that you will write. | |||||
feedback
|
|
The above linked list display in opposite direction. I think the correct implementation of insert method should be
| ||||
|
feedback
|
| ||||
|
feedback
|