Linked List

Dynamic node-based data structure operations across all 6 languages.

Insert Node

Inserts a new node at a given position in the linked list (O(n)).

Loading...

Delete Node

Removes a node with a given value by relinking the surrounding nodes (O(n)).

Loading...

Search Node

Traverses the list looking for a target value, returns its position (O(n)).

Traverse List

Visits every node from head to tail, printing or processing each value (O(n)).

Loading...