LinkedList Flashcards
1
Q
How to import and initialize a Linked List
A
import java.util.LinkedList;
LinkedList<DataType> Name = new LinkedList<>();</DataType>
2
Q
O(n)
A
Access, Search, delete value
3
Q
O(1)
A
Insert at head and tail
4
Q
How to add to head/tail and remove from head/tail
A
addFirst(E e)
addLast(E e)
removeFirst()
removeLast()
5
Q
How to get an element at linked list index
A
linkedList.get(i);
6
Q
A