LinkedSearchTree
Represents a linked search tree. See SearchTree for general definition of a search tree.
Linked search tree is a search tree with structure of a linked list. However, the order of elements in linked structure may be defined in different ways. For example, it may be a chronological order (i.e. new elements are added to the end of the order). Or an order induced by the search tree's inner order (i.e. the first element is the node with minimal priority, then the node with next minimal priority, and so on). See implementations' documentations to get the behaviour you need.
Properties
Functions
Link copied to clipboard
abstract override fun findSegmentFor(priority: Priority): SearchSegmentResult<LinkedSearchTreeNode<Element, Priority>>
Finds a segment in the search tree where the priority lies. See SearchSegmentResult for description of the segment.