Java ArrayList 选择 N 个元素
假设我有一个包含元素 {1,2,3,4} 的 ArrayList,并且我想枚举 ArrayList 中两个元素的所有可能组合。即(1,2)、(1,3)、(1,4)、(2,3)、(2,4)、(3,4)。执行此操作最优雅的方法是什么?
Say I have an ArrayList containing the elements {1,2,3,4}, and I want to enumerate all possible combinations of two elements in the ArrayList. i.e. (1,2), (1,3), (1,4), (2,3), (2,4), (3,4). What is the most elegant way of going about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嵌套 for 循环可以工作:
Nested for loops would work: