What is a linked list?

Arrays Linked Lists Questions



46 Short 80 Medium 67 Long Answer Questions Question Index

What is a linked list?

A linked list is a data structure that consists of a sequence of nodes, where each node contains a value and a reference (or link) to the next node in the sequence. Unlike arrays, linked lists do not require contiguous memory allocation, allowing for efficient insertion and deletion operations.