UNPKG

data-structures-again

Version:

A Javascript library of simple data structures

20 lines (18 loc) 456 B
const { BST, RedBlackBST, TwoDTree } = require('./src/tree') const Stack = require('./src/stack') const Queue = require('./src/queue') const Heap = require('./src/heap') const { Graph } = require('./src/graph') const DisjointSet = require('./src/disjoint-set') const HashSet = require('./src/hash-set') module.exports = { BST, RedBlackBST, TwoDTree, Stack, Queue, Heap, Graph, DisjointSet, HashSet }