--- title: "@std/data-structures" description: "Common data structures like red-black trees and binary heaps" jsr: jsr:@std/data-structures pkg: data-structures version: 1.0.10 generated: true stability: stable --- ## Overview
Data structures for use in algorithms and other data manipulation.
```js import { BinarySearchTree } from "@std/data-structures"; import { assertEquals } from "@std/assert"; const values = [3, 10, 13, 4, 6, 7, 1, 14]; const tree = new BinarySearchTree