Linked Lists in Java Part 1

Posted: April 23rd, 2008 | Filed under: General | Tags: , ,

Recently I have been playing around with Java’s LinkedList class. This is a very usefull class that is included in java.util.LinkedList.

The LinkedList Class allows you to implement a linked list (what a surprise) with a simple class declaration. I am going to explain how to create and use the class, as well as a few tips I have picked up while playing around with the class.
Read the rest of this entry »