Click or drag to resize
SuffixArrayXRank Method
Returns the number of suffixes strictly less than the query string. We note that rank(select(i)) equals i for each i between 0 and N-1.

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

Parameters

query
Type: SystemString
the query string

Return Value

Type: Int32
the number of suffixes strictly less than query
See Also