Java全对算法
给定一个整数集合,什么是 Java 算法,它将给出如下所示的所有项目对。
给定示例集合:[1,3,5],我们想要输出:
[1-1]
[3-3]
[5-5]
[1-3]
[1-5]
[3-5]
请注意,顺序并不重要,因此我们想要 [1-3]、[3-1] 之一,但不能两者兼而有之。
这应该适用于 n 个数字的集合,而不仅仅是本例中的三个数字。
Given a collection of integers, what's a Java algorithm that will give all pairs of items as follows..
Given the example collection: [1,3,5], we'd want the output:
[1-1]
[3-3]
[5-5]
[1-3]
[1-5]
[3-5]
Note that ordering is not important, so we want one of [1-3], [3-1] but not both.
This should work with a collection of n numbers, not just the the three numbers as in this example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
下面的函数应该执行
此函数的示例调用
Below function should do this
Example call to this function
听起来像是家庭作业……但无论如何,它就是这样。显然你可以不用 ArrayList 等 - 只是又快又脏。
Sounds like homework...but here it is anyway. Obviously you can do without an ArrayList, etc. - just quick and dirty.
这就是您想要的逻辑。
Here's the logic you want.