The data structure Linked list is collection of nodes storing data and link to the others. In this way, nodes can be located anywhere in memory, and passing from one node of the linked structure to another is accomplished by storing the reference to other node in the structure. In this assignment we want to use this structure to develop an ...