0

我有一个C5.TreeSet<double>, 一个排序的数据结构。https://github.com/sestoft/C5/

给定一个 value x,我想在集合中搜索所有j ≤ iS的最大索引(类似于 Python 的)。我怎样才能做到这一点?iS[j] <= xbisect.bisect

我以前使用List<T>withBinarySearch

4

1 回答 1

1

当 S 是 TreeSet,或更一般地说,是 IIndexedSorted 时,S.CountTo(x) 将为您提供严格小于 x 的项目数。

于 2015-06-16T04:56:29.097 回答