Hello! Tell me how to start developing the code for a doubly linked list and how to get started.

The list should support the following methods:

  • Add,
  • InsertBefore (value, ...)
  • InsertAfter (value, ...)
  • Delete (...)

Show a simple example of a doubly linked list or point to a link with an example.

    1 answer 1

    1. Read how the doubly linked list is organized.
    2. See how java.util.LinkedList is implemented.
    3. ???
    4. PROFIT