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.