UNPKG

@datastructures-es6/core

Version:

Implementation of the most common data structures in Javascript

15 lines (13 loc) 389 B
import { Array, LinkedList, Queue, Stack } from './modules/linear-data-structures/linear-data-structures.module.js'; import { BinaryTree } from './modules/non-linear-data-structures/non-linear-data-structures.module.js'; /** * @license MIT * @copyright 2023 André Fillype Silva <andrefillype10@gmail.com> */ export { Array, LinkedList, Queue, Stack, BinaryTree, }