@std/data-structures@1.0.9Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
latest
denoland/stdCommon data structures like red-black trees and binary heaps
This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers




JSR Score
100%
Published
5 months ago (1.0.9)
default
Data structures for use in algorithms and other data manipulation.
f
ascend
Compare two values in ascending order using JavaScript's built in comparison operators.
c
c
f
descend
Compare two values in descending order using JavaScript's built in comparison operators.
c
RedBlackTree
A red-black tree. This is a kind of self-balancing binary search tree. The values are in ascending order by default, using JavaScript's built-in comparison operators to sort the values.
c
RedBlackTree
A red-black tree. This is a kind of self-balancing binary search tree. The values are in ascending order by default, using JavaScript's built-in comparison operators to sort the values.
c
BidirectionalMap
An extension of Map that allows lookup by both key and value.