Lesson LL Tree
Lesson LL Tree
- By Harshi Chandrafari
Learning Objectives:
- What are Linked Lists
- Coding a Linked List
- What are Trees
- Coding Trees
- Summary
What is Linked List?
● Definition: A sequential
data structure where
each element (node)
points to the next.
● Components: Node,
Pointer, Head, Tail.
What is Node ?