##Data Structures
###Link List
- addFront -> light operation. C : O(1)
- addEnd -> light operation. C : O(1)
- removeFront -> light operation. C : O(1)
- removeEnd -> heavy operation since the whole list needs to be traversed to reach the last node. C : O(n)