SearchTree

In Kone, search trees are structures that consist of:

  1. an order on values called "priorities" (thus, search tree is contextful)

  2. and a tree (in computer science sense of the word) that holds several pairs of one priority value and one corresponding element in each its vertex and satisfies search tree property:

    • each vertex's children are linearly ordered,

    • each non-leaf vertex contains one pair less than the number of its children,

    • for any given non-leaf vertex \(A\), if \(C_0\), ..., \(C_n\) are children of \(A\) sorted increasingly and \(P_1\), ..., \(P_n\) are \(A\)'s priorities sorted increasingly as well, then \(C_0 \leqslant P_1 \leqslant C_1 \leqslant ... \leqslant C_{n-1} \leqslant P_n \leqslant C_n\) where \(C \leqslant P\) (\(P \leqslant C\)) means that all the priorities in a subtree with root \(C\) are less (greater) or equal to \(P\).

This interface's inheritors must have some specific structure that provides optimised search. Without it (or with bad time complexity like \(O(n)\)) the interface should not be used.

Inheritors

Properties

Link copied to clipboard

Iterable that is a view on elements of that search tree.

Link copied to clipboard

Reified set that is a view on nodes of that search tree.

Link copied to clipboard
abstract val size: UInt

Number of elements in the collection.

Functions

Link copied to clipboard
abstract fun add(element: Element, priority: Priority): SearchTreeNode<Element, Priority>

Adds the element with corresponding priority to the search tree and returns constructed node that corresponds to the element and the priority.

Link copied to clipboard
open operator fun contains(priority: Priority): Boolean

Checks if there is a node with the specified priority.

Link copied to clipboard
abstract fun find(priority: Priority): SearchTreeNode<Element, Priority>?

Finds and returns a node in the search tree with equal priority. If there is no such node, returns null.

Link copied to clipboard

Finds a segment in the search tree where the priority lies. See SearchSegmentResult for description of the segment.