Categorygithub.com/unixpickle/splaytree
modulepackage
1.2.0
Repository: https://github.com/unixpickle/splaytree.git
Documentation: pkg.go.dev

# README

splaytree

This is a simple Golang implementation of Splay trees. I've mainly created this package to ensure that I understand how Splay trees work and will be able to implement them correctly in other projects.

# Structs

Node is a node in a tree.
Tree is a splay tree, which consists of a single root node.

# Interfaces

Value is an abstract comparable type of value.