A collection of linear data structures implemented in TypeScript. Each data structure lives in its own folder with detailed documentation and implementation.
| Data Structure | Description | Documentation |
|---|---|---|
| Stack | LIFO/FILO structure β elements added/removed from the top | View details β |
| Queue | FIFO structure β elements added at rear, removed from front | View details β |
| Linked List | Dynamic chain of nodes β each node points to the next | View details β |
Note: Each linked README is the source of truth for that data structure. When you update an inner README, the content stays in sync β this main file simply points to it.