IntermediateVocabulary#software-architecture#developer-tools#backend

Linked List Vocabulary

Learn the vocabulary of a sequence of nodes linked by pointers instead of stored in contiguous array slots.

0 / 5 completed
1 / 5
At standup, a dev mentions a sequence of nodes where each node holds a value and a pointer to the next node, so inserting or removing an element only requires updating a couple of pointers instead of shifting every later element. What is this structure called?