二进制搜索中的首次出现
2022-09-01 16:22:28
我正在修改一些代码,我意识到了一些我从来不知道的事情。正常的二进制搜索将在数据集中为多次出现的键返回随机索引。如何修改下面的代码以返回第一次出现?这是人们做的事情吗?
//ripped from the JDK
public static int binarySearchValue(InvertedContainer.InvertedIndex[] a, long key) {
return bSearchVal(a, 0, a.length, key);
}
private static int bSearchVal(InvertedContainer.InvertedIndex[] a, int fromIndex,
int toIndex, long key) {
int low = fromIndex;
int high = toIndex - 1;
while (low <= high) {
int mid = (low + high) >>> 1;
long midVal = a[mid].val;
if (midVal < key)
low = mid + 1;
else if (midVal > key)
high = mid - 1;
else
return mid; // key found
}
return (low); // key not found. return insertion point
}