Skip to content

Latest commit

 

History

History
69 lines (43 loc) · 1.81 KB

File metadata and controls

69 lines (43 loc) · 1.81 KB
tags date
data-structure
array
linear-structures
linked-list
singly-linkedlist
doubly-linkedlist
circular-linked-list
2025-09-26

Arrays | Lists | Linked-Lists

Array data-structure type Content

Documentation

A list is a collection of items where each item holds a relative position with respect to the others.

Linked-List

The basic building block for the linked list implementation is the node. Each node object must hold at least two pieces of information. First, the node must contain the list item itself. We will call this the data field of the node. In addition, each node must hold a reference to the next node.

Head

The head of the list refers to the first node which contains the first item of the list.

The head of the list refers to the first node which contains the first item of the list. In turn, that node holds a reference to the next node (the next item) and so on.

linked list traversal

Traversal refers to the process of systematically visiting each node.


Guide & Areas of Study


Terms & Keywords

  • grounding the node
  • linked list traversal
  • inch-worming

References


Notes