How are linked list items structured?
Contains a value and a pointer to the next item in the list
What variables are needed for a linked list class?
Benefits of linked lists compared to arrays
How to addToHead() in a linked list?
How to addToTail() in a linked list?
How to use addItemAt() to add an item in between the 4th and 5th element in a linked list?
How to use removeItemAt() to remove the 7th item in a list?