Linked List
A linear data structure containing a sequence of objects called nodes. Each node stores data and a directional pointer referencing the next node in the sequence. Visualized here are inserts and deletes at any index, showing traversal O(N) logic.
class Node {
data: any;
next: Node | null;
}Idx
HEAD(Start)
NULL