2 Repos
Each algorithm and data structure is implemented as a standalone JavaScript module exporting pure functions with no external dependencies.
Distinct from Pure Function Patterns: Distinct from Pure Function Patterns: focuses on the module packaging pattern, not the functional programming technique itself.
Explore 2 awesome GitHub repositories matching web development · Standalone Pure Function Modules. Refine with filters or upvote what's useful.
This is a collection of classic computer science algorithms and data structures implemented from scratch in JavaScript. The project provides reference implementations of fundamental concepts including sorting algorithms, binary search, linked lists, and binary search trees, all built as standalone pure functions with no external dependencies. The implementations cover a range of data structures, including singly-linked, doubly-linked, and circular linked lists with full traversal and mutation operations, as well as binary search trees supporting insertion, deletion, and search. Sorting algori
Ships each algorithm and data structure as an independent, reusable pure function module.
This project is a JavaScript algorithm library and computer science reference. It provides a collection of standard computational logic patterns and data structure implementations, including linked lists, trees, and graphs, for both educational and practical use. The codebase serves as a technical interview study guide, offering a practical resource for practicing common coding challenges and data structure manipulations. It is designed for computer science education, allowing users to study how classic algorithms work by reviewing and running implementations of established logic patterns. T
Implements algorithms as standalone JavaScript modules exporting pure functions.