UNPKG

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) 302 B
export { LinkedList } from './structures/linked-list.cjs'; export { Stack } from './structures/stack.cjs'; export { Queue } from './structures/queue.cjs'; export { Deque } from './structures/deque.cjs'; export { ListNode } from './core/list-node.cjs'; export { Vector } from './structures/vector.cjs';