SearchSegmentResult

Represents a result of search for specified priority in a search tree. There are exactly five possible outcomes of the operation:

  1. The search tree is empty. In that case, the Empty object is returned.

  2. The priority coincides with some node's priority. In that case, the Coincidence instance with the node is returned.

  3. The priority is strictly less than the minimal priority. In that case, the LessThanMinimum instance with the minimal noded is returned.

  4. The priority is strictly greater than the maximal priority. In that case, the GreaterThanMaximum instance with the maximal noded is returned.

  5. The priority lies strictly between priorities of two neighbour nodes. In that case the Between instance with the lowerBound and upperBound nodes is returned.

Inheritors

Types

Link copied to clipboard
data class Between<out SearchTreeNode>(val lowerBound: SearchTreeNode, val upperBound: SearchTreeNode) : SearchSegmentResult<SearchTreeNode>

Represents a case when the priority lies strictly between priorities of two neighbour nodes. In that case the class's instance with the lowerBound and upperBound nodes is returned.

Link copied to clipboard

Represents a case when the priority coincides with some node's priority. In that case, the class's instance with the node is returned.

Link copied to clipboard

Represents a case when the search tree is empty. In that case, the object is returned.

Link copied to clipboard

Represents a case when the priority is strictly greater than the maximal priority. In that case, the class's instance with the maximal noded is returned.

Link copied to clipboard

Represents a case when the priority is strictly less than the minimal priority. In that case, the class's instance with the minimal noded is returned.