A simple linked-list is just a series of nodes containing data, where each node either refers to the next node or to the end of the list. Generally, we represent these concepts with pointers in ...