Skip to content
Codeloom

Topics / Linked Lists

🔗

Linked Lists

Pointer-driven data structures — singly, doubly, cycles, reversal, and the slow/fast trick.

Why learn Linked Lists?

  • Forces you to think in pointers — a transferable mental skill.

  • Many "famous" interview problems are linked-list problems in disguise.

  • Slow/fast pointers solve a whole family of problems.

What you can build with Linked Lists

Cycle detection (Floyd's tortoise and hare) Reverse / merge / rearrange patterns LRU cache implementations

Linked Lists tutorials

0 articles · page 1 of 1

Hand-written tutorials, ordered as a recommended learning path.

Tutorials for Linked Lists are on the way.

In the meantime, explore other topics.