- Type the value in the relevant field before running an operation.
- Use Insert At Head to add a value before the current first node.
- Use Insert At Tail to append a value after the last node.
- Use Insert At Node to insert a value after a specific existing index position.
- Use Search to find whether a value exists in the linked list.
- Use Remove to delete the node whose value matches the entered number.
- Observe the list update after each operation to understand how the structure changes.
Observations