Insert an Element

Enter a number to add it to the double linked list.

Insert an Element by Given Index

Add a number and index to the Double Linked List by entering them.

Remember that the first element starts at the index zero.

Delete an Element

This operation is based on a queue. The first element to enter is the first to exit.

This exclusion at the end addresses the concept of a Stack. The last element to enter is the first to exit

Delete an Element

Pick an element to delete from the list.

The logic will involve scrolling through the list searching for the node with the specified value. Once found, the pointers will be adjusted and the element excluded.

Output

List: []

Size: 0