← practice

Linked Lists

pointers · dummy nodes · O(1) space
Linked list problems test pointer manipulation precision. The recurring tools: a dummy head to avoid edge cases, fast/slow pointers for cycles and midpoints, and careful reversal. Draw the nodes on paper — these are bug-prone if you code blind.

10 problems

Next patternTrees & BST