Click or drag to resize
RedBlackBSTKey, ValueSelect Method
Return the kth smallest key in the symbol table.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Key Select(
	int k
)

Parameters

k
Type: SystemInt32
k the order statistic

Return Value

Type: Key
the kth smallest key in the symbol table
Exceptions
ExceptionCondition
IndexOutOfRangeExceptionunless k is between 0 and N - 1
See Also