Doubly Liked Lists (DLL)
DLL is a linked list that each node has a next link a previous link
Two dummy nodes (sentinels) are used to guard as head and tail of DLL
DLL is superior in terms of speed thanks to the two-way links. However it requires more storage space