java中从Set中选择子集组合

发布于 2024-12-12 04:37:47 字数 180 浏览 0 评论 0原文

假设我有一个 Set s,并且我想要 s 的所有子集都可以由 s 的两个元素组成。有我可以使用的软件包或者您可以推荐的最佳实践吗?

注意:我想要的是集合(组合),而不是所有带有顺序的排列。

两个元素的情况很简单,我想我将对元素进行排序并使用两个循环来进行组合。但是,如果我可以使用更优雅或更可扩展的东西,我想听听。

Let's say I have a Set s and I want all subsets of s that can be made from two elements of s. Is there a package I can use or a best practice you can recommend?

Note: I want the sets (combinations), not all permutations with an order.

The case for two elements is kind of easy and I figure I'll order the elements and use two loops to make the combinations. However if there is something more elegant or more extensible that I could use, I'd like to hear about about it.

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

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

发布评论

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

评论(1

分开我的手 2024-12-19 04:37:47

查找 s 的 powerset 排除这两个元素,并将这两个元素添加到所有结果集中

Find powerset of s excluding those two elements and add those two elements in all the resulting sets

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