This is a simple implementation of linked list in java programming language. Very nice and well commented java source code for beginners. If you need a good learning source for Java, then Head First Java is your way to go. It is a complete learning experience in Java and object-oriented programming.

There are other implementations on Linked List in C and C++ as well.

You can “get” and “set” the list items as well as traverse through “previous” and “next ” items. This java program can create a linked list using one object or an array of objects.

This source code is just for demonstration purpose as there is already a LinkedList class available in Java.