In doubly linked list, each node has to arrows where one points to the next node and the other one points to the previous node. As you can see from the model, first node's previous reference is None and next reference is pointing to the 2nd node. 2n...