Java Cheet Sheet
Data Structure
List
Append: add(E e). Insert into specific index: add(int index, E e). Note insertion will increase the size of the list.
Access: get(int index).
Set value: set(int index, E e).
[Read More]