Linked List
« Back to Glossary IndexA linked list is a data structure consisting of nodes where each node points to the next. Linked lists allow dynamic size and efficient insertions but slower access. Example: A singly linked list of values.
« Back to Glossary Index