To download the files in this video tutorial, go here: https://drive.google.com/file/d/0B2ah...
In this tutorial series, we'll look at what Linked Lists are, and how to implement a singly-linked list in Java.
01. Introduction to LinkedLists
01-introduction.txt
02. Implementing a Node
02-nodeAPI.txt, Node.java
03. Implementing a LinkedList
Helper methods
03-linkedList.txt, LinkedList.java
-- Appending --
04. to the tail - add(E dataValue)
to the front - addToFront(E dataValue)
at a specific index - addAtIndex(E dataValue, int index)
-- Retrieving --
05. an element - get(int index)
-- Removing --
06. from the tail - removeFromTail()
from the front - removeFromFront()
at a specific index - removeAtIndex(int index)