Tag Archives: Java LinkedList

Java Video Tutorial 12

Java Video Tutorial 12In this part of the Java Video Tutorial I cover Java Linked Lists.

The LinkedList class is a collection based on a linked list instead of an array like the ArrayList. They are good when you plan to add and delete items. They aren’t particularly efficient at providing access based off of index searches though.

Nearly every Java Linked List method is shown below. Make sure you look for the code that follows the video, so you completely understand Linked Lists.

Continue reading Java Video Tutorial 12