Click or drag to resize
Accord.NET (logo)

RedBlackTreeTFindLessThan Method (T)

Finds the greatest point in the tree that is less than (<) k. In other words, finds a number stored in the tree that is immediately below k.

Namespace:  Accord.Collections
Assembly:  Accord (in Accord.dll) Version: 3.8.0
Syntax
public RedBlackTreeNode<T> FindLessThan(
	T value
)
Request Example View Source

Parameters

value
Type: T
A reference value to be found.

Return Value

Type: RedBlackTreeNodeT
The node containing an element that is immediately below value.
See Also