Collections.binarySearch(List list, K key) clarification. Java(Collections.binarySearch(List list, K key) 澄清.爪哇)
问题描述
鉴于以下陈述,取自 thisOracle java教程,涉及Collections类的binarySearch()方法:
Given the following statement, taken from this Oracle java tutorial, related to the binarySearch() method of the class Collections:
两种形式的返回值相同.如果列表包含搜索键,返回其索引.如果不是,则返回值为(-(insertion point) - 1),其中插入点是在该值将被插入到列表中,或者是第一个元素大于值或 list.size() 如果所有元素都在列表小于指定值.
The return value is the same for both forms. If the List contains the search key, its index is returned. If not, the return value is (-(insertion point) - 1), where the insertion point is the point at which the value would be inserted into the List, or the index of the first element greater than the value or list.size() if all elements in the List are less than the specified value.
为什么binarySearch()
的返回值不是只返回负数,而是负数减1?(上面引用的粗体部分).
Why does the return value of binarySearch()
not return only the negative index instead of the negative index minus 1? (the part in bold of the quote above mentioned).
简而言之:为什么是 (-(insertion point) - 1)
而不仅仅是 (-(insertion point))
?
In brief: why (-(insertion point) - 1)
and not only (-(insertion point))
?
提前致谢.
推荐答案
那是因为 -(insertion point)
会模棱两可.您将无法区分以下内容:
That's because -(insertion point)
would be ambiguous. You wouldn't be able to tell the following apart:
- 在
0
位置找到项目; - 找不到项目,插入点是
0
.
- item found at position
0
; - item not found, and insertion point is
0
.
使用-(插入点)-1
,以上两种情况导致返回值不同(0
和-1
).
With -(insertion point) - 1
, the above two cases result in different return values (0
and -1
).
这篇关于Collections.binarySearch(List list, K key) 澄清.爪哇的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Collections.binarySearch(List list, K key) 澄清.爪哇
- C++ 和 Java 进程之间的共享内存 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01