src.pydasa.structs.lists.dllt#

Module to represent the Doubly Linked List data structure in PyDASA.

This module provides the DoubleLinkedList class which implements a doubly linked list with methods for insertion, deletion, and traversal.

classes:

DoubleLinkedList: Implements a doubly linked list with methods for insertion, deletion, and traversal.

IMPORTANT: based on the implementations proposed by the following authors/books:

  1. Algorithms, 4th Edition, Robert Sedgewick and Kevin Wayne.

  2. Data Structure and Algorithms in Python, M.T. Goodrich, R. Tamassia, M.H. Goldwasser.