Back to Linked List

Linked List practice problems

A focused problem list tied to the real-world applications on this topic. Open any problem directly on its platform.

5 problems List view Mobile optimized

Why this page exists

The main topic page explains where the idea is used in production. This child page is only for practice.

Linked List practice

5 items
1

LRU Cache

The canonical linked-list plus hash map design problem for cache eviction.

LeetCode
2

Design Browser History

A navigation-history problem that matches the doubly linked list use case.

LeetCode
3

Flatten a Multilevel Doubly Linked List

A more realistic linked-structure problem with nested navigation and rewiring.

LeetCode
4

Copy List with Random Pointer

A practical linked-structure problem with pointer identity and reconstruction.

LeetCode
5

Reverse Linked List

Core pointer reversal problem that still belongs in the fundamentals.

LeetCode