Skip to main content

# Leftrb/LLRB

Leftrb is a Left-Leaning Red-Black (LLRB) implementation of 2–3 balanced binary search trees in Python.

This is a straightforward port of the Java code presented by Robert Sedgewick in [his paper]((http://www.cs.princeton.edu/~rs/talks/LLRB/LLRB.pdf) and in the book [Algorithms, 4th Edition](http://algs4.cs.princeton.edu/home/), which is written by Robert Sedgewick and Kevin Wayne. By their permission, the [original GPL v3 licensed Java code](http://www.cs.princeton.edu/~rs/talks/LLRB/Java/RedBlackBST.java) is licensed as LGPL v3, and ported to Python.

## Overview

A balanced binary search tree (BBST) maintains elements in sorted order under dynamic updates (inserts and deletes) and can support various order-specific queries.

Red-black trees are the de facto standard BBST algorithms, and are the underlying data structure for symbol-table implementations within C++, Java, Python, BSD Unix, Linux and many other modern systems.

All red–black trees are based on implementing 2-3 or 2-3-4 trees within a binary tree, using red links to bind together internal nodes into 3-nodes or 4-nodes. Search, insert and delete operations are O(log n) and space requirements are O(n).

However, many traditional implementations have lots of repetitive code on the symmetric branches of rotation and deletion operations. So they are not easy to reason about and augment with other properties, which is what BBST’s are often used for: They are used to implement other common data structures like Priority Queues and Interval Trees.

The LLRB method of implementing 2-3 trees is a recent improvement over the traditional implementation — it maintains an additional invariant that all red links must lean left except during inserts and deletes. Because of this, they can be implemented by adding just a few lines of code to standard BST algorithms.

The LLRB tree is based on combining three ideas:

  • Use a recursive implementation.

  • Require that all 3-nodes lean left.

  • Perform rotations on the way up the tree (after the recursive calls).

The LLRB approach was discovered relatively recently (in 2008) by Robert Sedgewick of Princeton University. For original code and more information read the paper “Left-leaning Red-Black Trees” at [http://www.cs.princeton.edu/~rs/talks/LLRB/LLRB.pdf](http://www.cs.princeton.edu/~rs/talks/LLRB/LLRB.pdf)

## Installation

From Python package index:

pip install leftrb

or from Github source:

git clone https://github.com/peterhil/leftrb.git cd leftrb python setup.py install

## About

Leftrb/LLRB was written by [Peter Hillerström](http://composed.nu/peterhil/). Follow me on Twitter [@peterhil](http://www.twitter.com/peterhil)!

Release files for leftrb 0.1.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for leftrb 0.1.3
File Size Uploaded
leftrb-0.1.3.tar.gz 177.6 kB Details

Release files / leftrb-0.1.3.tar.gz

Download URL leftrb-0.1.3.tar.gz
Size 177.6 kB
Tags Source
SHA-256 checksum
How to use checksums
c6cdabcfa4b640372827b52acef875644659402373e1fb6342b8784dde3aeb0e
BLAKE2b-256 checksum
How to use checksums
28f8e4a1afc14be34538a5226147eababfa12f093e3ed1da51754687d29c7004
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.1.3 This release

1 release file

0.1.2

1 release file

0.1.1

0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page