stl-kit
Version:
A modern JavaScript & TypeScript standard template library (STL) for data structures and algorithms. Includes high-performance implementations of Stack, Queue, Deque, Linked List, Vector, Set, Map, Tree, Heap, and Graph — inspired by C++ STL. Designed for
7 lines (6 loc) • 296 B
TypeScript
export { LinkedList } from './structures/linked-list.js';
export { Stack } from './structures/stack.js';
export { Queue } from './structures/queue.js';
export { Deque } from './structures/deque.js';
export { ListNode } from './core/list-node.js';
export { Vector } from './structures/vector.js';