
Data StructuresJavaScriptApr 28, 2024
Implementing Hash Tables with NodeJS and Javascript
Hash tables in JavaScript: native Map, collisions, and O(1) lookups in practice. Implementation plus gaps the docs skip.
Read storyLong-form notes on systems, software engineering, architecture, and lessons from real projects.


Hash tables in JavaScript: native Map, collisions, and O(1) lookups in practice. Implementation plus gaps the docs skip.
Read story
Graphs in JavaScript with adjacency lists: modeling, neighbors, and a solid setup for BFS and DFS. Working Node.js code.
Read story
Trees in JavaScript: nodes, traversals, and the foundation for BSTs and heaps. Clear, practical Node.js examples throughout.
Read story
FIFO queues in JavaScript/Node.js: simple implementation, priority patterns, and where queues show up in production apps.
Read story
Stack (LIFO) in JavaScript: implementation, real use cases, and commented Node.js code. Straightforward hands-on tutorial.
Read story