Click or drag to resize
SuffixArraySelect Method
Returns the ith smallest suffix as a string.

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

Parameters

i
Type: SystemInt32
the index

Return Value

Type: String
the I smallest suffix as a string
Exceptions
ExceptionCondition
IndexOutOfRangeExceptionunless 0 <= i < N
See Also