Java ArrayList 中
如何找到 ArrayList 的中间位置?
How to find the middle of an ArrayList ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何找到 ArrayList 的中间位置?
How to find the middle of an ArrayList ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果您有
N
个项目,则中间项目通常定义为索引N/2
处的项目(从 0 开始)。一般来说,如果您需要找到索引
low
(包含)和high
(不包含)之间的项目,数学上是int mid = (low + high) / 2 。但由于有限精度整数的算术溢出,正确的公式是 int mid = (low + high) >>> 1;
另请参阅
If you have
N
items, the middle item is usually defined as item at indexN/2
(0-based).Generally, if you need to find the middle of items between index
low
(inclusive) andhigh
(exclusive), it's mathematicallyint mid = (low + high) / 2
. But due to arithmetic overflow in limited-precision integer, the proper formula isint mid = (low + high) >>> 1;
See also
如果 ArrayList 的大小在数量上是偶数,则使用
(ArrayList.size()/2)+1 或 (ArrayList.size()/2) 作为中间。
如果ArrayList的大小在数量上是奇数,则使用(ArrayList.size()+1)/2作为中间。
If the size of ArrayList is even in number, then use
(ArrayList.size()/2)+1 or (ArrayList.size()/2) as the middle.
If the size of ArrayList is odd in number, then use (ArrayList.size()+1)/2 as the middle.