package splay_tree

  1. Overview
  2. Docs
A splay tree implementation

Install

Dune Dependency

Authors

Maintainers

Sources

splay_tree-v0.16.0.tar.gz
sha256=83a664ad9ce3f325588c418fb6f9bf0c1a846948aeb7bc35d0d11ec726371148

Description

Splay trees are binary search trees that move recently accessed nodes closer to the root for easier access. They have amortized O(log n)-time access for a large enough sequence of primitive operations.

A splay trees may outperform other trees such as red-black trees when recently accessed items are more likely to be accessed in the near future.

Notably, this splay tree implementation is parameterized by a reduction operation which lets you specify an extra accumulator value, which can then be searched by efficiently.

Published: 14 Jun 2023

README

README.org

A splay tree implementation.

Splay trees are binary search trees that move recently accessed nodes
closer to the root for easier access.  They have amortized O(log
n)-time access for a large enough sequence of primitive operations.

A splay trees may outperform other trees such as red-black trees when
recently accessed items are more likely to be accessed in the near
future.

Notably, this splay tree implementation is parameterized by a
reduction operation which lets you specify an extra accumulator value,
which can then be searched by efficiently.

Dependencies (4)

  1. dune >= "2.0.0"
  2. ppx_jane >= "v0.16" & < "v0.17"
  3. core >= "v0.16" & < "v0.17"
  4. ocaml >= "4.14.0"

Dev Dependencies

None

Used by (3)

  1. incr_dom_interactive >= "v0.16.0"
  2. incr_dom_partial_render >= "v0.16.0"
  3. incr_dom_sexp_form >= "v0.16.0"

Conflicts

None