Java ArrayList 中

发布于 2024-08-30 00:44:28 字数 28 浏览 3 评论 0原文

如何找到 ArrayList 的中间位置?

How to find the middle of an ArrayList ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

吖咩 2024-09-06 00:44:28

如果您有 N 个项目,则中间项目通常定义为索引 N/2 处的项目(从 0 开始)。

10 items
0,1,2,3,4,5,6,7,8,9
          |
          5

13 items
0,1,2,3,4,5,6,7,8,9,0,1,2
            |
            6

一般来说,如果您需要找到索引 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 index N/2 (0-based).

10 items
0,1,2,3,4,5,6,7,8,9
          |
          5

13 items
0,1,2,3,4,5,6,7,8,9,0,1,2
            |
            6

Generally, if you need to find the middle of items between index low (inclusive) and high (exclusive), it's mathematically int mid = (low + high) / 2. But due to arithmetic overflow in limited-precision integer, the proper formula is int mid = (low + high) >>> 1;

See also

未央 2024-09-06 00:44:28
ArrayList.size()/2
ArrayList.size()/2
灼痛 2024-09-06 00:44:28

如果 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文