← Pointer Manipulation

Micro-Drill #20 — Traverse to end

Pointer Manipulation Target: 10s

Linear traversal is how you access linked list elements. Basis for search and length calculation.

while cur: cur = cur.next

Type it from memory. Go.

Practice Problems

← Micro #19 Micro #21 →