redblacktree

package
v0.0.0-...-e0ee87b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 5, 2021 License: MIT Imports: 2 Imported by: 5

Documentation

Overview

Package redblacktree implements a red-black tree.

Used by TreeSet and TreeMap.

Structure is not thread safe.

References: http://en.wikipedia.org/wiki/Red%E2%80%93black_tree

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Iterator

type Iterator struct {
	// contains filtered or unexported fields
}

Iterator holding the iterator's state

func (*Iterator) Begin

func (iterator *Iterator) Begin()

Begin resets the iterator to its initial state (one-before-first) Call Next() to fetch the first element if any.

func (*Iterator) End

func (iterator *Iterator) End()

End moves the iterator past the last element (one-past-the-end). Call Prev() to fetch the last element if any.

func (*Iterator) First

func (iterator *Iterator) First() bool

First moves the iterator to the first element and returns true if there was a first element in the container. If First() returns true, then first element's key and value can be retrieved by Key() and Value(). Modifies the state of the iterator

func (*Iterator) HasNext

func (iterator *Iterator) HasNext() bool

func (*Iterator) HasPrev

func (iterator *Iterator) HasPrev() bool

func (Iterator) IsBegin

func (iterator Iterator) IsBegin() bool

func (Iterator) IsEnd

func (iterator Iterator) IsEnd() bool

func (Iterator) Key

func (iterator Iterator) Key() interface{}

Key returns the current element's key. Does not modify the state of the iterator.

func (*Iterator) Last

func (iterator *Iterator) Last() bool

Last moves the iterator to the last element and returns true if there was a last element in the container. If Last() returns true, then last element's key and value can be retrieved by Key() and Value(). Modifies the state of the iterator.

func (*Iterator) Next

func (iterator *Iterator) Next() bool

Next moves the iterator to the next element and returns true if there was a next element in the container. If Next() returns true, then next element's key and value can be retrieved by Key() and Value(). If Next() was called for the first time, then it will point the iterator to the first element if it exists. Modifies the state of the iterator.

func (*Iterator) Prev

func (iterator *Iterator) Prev() bool

Prev moves the iterator to the previous element and returns true if there was a previous element in the container. If Prev() returns true, then previous element's key and value can be retrieved by Key() and Value(). Modifies the state of the iterator.

func (Iterator) Value

func (iterator Iterator) Value() interface{}

Value returns the current element's value. Does not modify the state of the iterator.

type Node

type Node struct {
	Key   interface{}
	Value interface{}

	Left   *Node
	Right  *Node
	Parent *Node
	// contains filtered or unexported fields
}

Node is a single element within the tree

func (*Node) String

func (node *Node) String() string

type Tree

type Tree struct {
	Root *Node

	Comparator func(a, b interface{}) int
	// contains filtered or unexported fields
}

Tree holds elements of the red-black tree

func CopyFrom

func CopyFrom(rbt *Tree) *Tree

func NewWith

func NewWith(comparator func(a, b interface{}) int, isMulti bool) *Tree

NewWith instantiates a red-black tree with the custom comparator.

func NewWithIntComparator

func NewWithIntComparator(isMulti bool) *Tree

NewWithIntComparator instantiates a red-black tree with the IntComparator, i.e. keys are of type int.

func NewWithStringComparator

func NewWithStringComparator(isMulti bool) *Tree

NewWithStringComparator instantiates a red-black tree with the StringComparator, i.e. keys are of type string.

func (*Tree) Begin

func (tree *Tree) Begin() Iterator

func (*Tree) Ceiling

func (tree *Tree) Ceiling(key interface{}) (ceiling *Node, found bool)

Ceiling finds ceiling node of the input key, return the ceiling node or nil if no ceiling is found. Second return parameter is true if ceiling was found, otherwise false.

Ceiling node is defined as the smallest node that is larger than or equal to the given node. A ceiling node may not be found, either because the tree is empty, or because all nodes in the tree are smaller than the given node.

Key should adhere to the comparator's type assertion, otherwise method panics.

func (*Tree) Clear

func (tree *Tree) Clear()

Clear removes all nodes from the tree.

func (*Tree) CopyFrom

func (tree *Tree) CopyFrom(rbt *Tree)

func (*Tree) Empty

func (tree *Tree) Empty() bool

Empty returns true if tree does not contain any nodes

func (*Tree) End

func (tree *Tree) End() Iterator

func (*Tree) Floor

func (tree *Tree) Floor(key interface{}) (floor *Node, found bool)

Floor Finds floor node of the input key, return the floor node or nil if no floor is found. Second return parameter is true if floor was found, otherwise false.

Floor node is defined as the largest node that is smaller than or equal to the given node. A floor node may not be found, either because the tree is empty, or because all nodes in the tree are larger than the given node.

Key should adhere to the comparator's type assertion, otherwise method panics.

func (*Tree) Get

func (tree *Tree) Get(key interface{}) Iterator

Get searches the node in the tree by key and returns its value or nil if key is not found in tree. Second return parameter is true if key was found, otherwise false. Key should adhere to the comparator's type assertion, otherwise method panics.

func (*Tree) Insert

func (tree *Tree) Insert(key interface{}, value interface{}) Iterator

func (*Tree) Iterator

func (tree *Tree) Iterator() Iterator

Iterator returns a stateful iterator whose elements are key/value pairs.

func (*Tree) Keys

func (tree *Tree) Keys() []interface{}

Keys returns all keys in-order

func (*Tree) Left

func (tree *Tree) Left() *Node

Left returns the left-most (min) node or nil if tree is empty.

func (*Tree) LowerBound

func (tree *Tree) LowerBound(key interface{}) Iterator

LowerBound returns an iterator pointing to the first element that is not less than the given key. Complexity: O(log N).

func (*Tree) New

func (tree *Tree) New(comparator func(a, b interface{}) int)

func (*Tree) Put

func (tree *Tree) Put(key interface{}, value interface{})

Put inserts node into the tree. Key should adhere to the comparator's type assertion, otherwise method panics.

func (*Tree) Remove

func (tree *Tree) Remove(key interface{})

Remove remove the node from the tree by key. Key should adhere to the comparator's type assertion, otherwise method panics.

func (*Tree) RemoveOne

func (tree *Tree) RemoveOne(itr Iterator)

func (*Tree) Right

func (tree *Tree) Right() *Node

Right returns the right-most (max) node or nil if tree is empty.

func (*Tree) Size

func (tree *Tree) Size() int

Size returns number of nodes in the tree.

func (*Tree) String

func (tree *Tree) String() string

String returns a string representation of container

func (*Tree) UpperBound

func (tree *Tree) UpperBound(key interface{}) Iterator

UpperBound returns an iterator pointing to the first element that is greater than the given key. Complexity: O(log N).

func (*Tree) Values

func (tree *Tree) Values() []interface{}

Values returns all values in-order based on the key.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL