View on GitHub

reading-notes

Read: Linked Lists

Big O: Analysis of Algorithm Efficiency :

img

Linked Lists

LINKED LIST
A Linked List is a sequence of Nodes that are connected/linked to each other. The most defining feature of a Linked List is that each Node references the next Node in the link. Node
Nodes are the individual items/links that live in a linked list. Each node contains the data for each link. NEXT
Each node contains a property called Next. This property contains the reference to the next node. HEAD-NODE
The first node in the linked-list TAIL-NODE
the last node with value of properity is null

What’s a Linked List, Anyway pt1

What’s a Linked List, Anyway pt2