Skip to content
AI360Xpert
Back to Patterns
6

Linked List

A Linked List is a linear data structure where elements are stored in nodes, and each node points to the next. Problems often involve manipulating these pointers (e.g., reversing, merging, or detecting cycles using fast and slow pointers).