Skip to main content
Go to Latest
class RedBlackNode
extends BinarySearchNode<T>
import { RedBlackNode } from "https://deno.land/std@0.151.0/collections/red_black_node.ts";

Constructors

new
RedBlackNode(parent: RedBlackNode<T> | null, value: T)

Properties

left: RedBlackNode<T> | null
parent: RedBlackNode<T> | null
red: boolean
right: RedBlackNode<T> | null

Static Methods

from<T>(node: RedBlackNode<T>): RedBlackNode<T>