Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/collections/trees/bs_tree.ts

Collection data structures that are not standard built-in objects in JavaScript. This includes a vector (double-ended queue), binary heap (priority queue), binary search tree, and a red black tree.
Very Popular
Go to Latest
import * as collections from "https://deno.land/x/collections@v0.10.1/trees/bs_tree.ts";

Classes

A unbalanced binary search tree. The values are in ascending order by default, using JavaScript's built in comparison operators to sort the values.