1 repositorio
Iterators implemented using JavaScript generator functions to yield data from custom data structures.
Distinct from Sequential Iterators: Distinct from Sequential Iterators: focuses on generator-based iteration protocol rather than general sequential traversal.
Explore 1 awesome GitHub repository matching data & databases · Generator-Based Iterators. 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
Uses JavaScript generator functions to provide iterable interfaces for linked lists and trees.