Collections.binarySearch(List list, K key) 澄清.爪哇 [英] Collections.binarySearch(List list, K key) clarification. Java

查看:24
本文介绍了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) 澄清.爪哇的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆