动态大小集的静态大小排列

发布于 2024-12-02 09:21:23 字数 125 浏览 1 评论 0原文

如何获取列表的所有组合,其中组合大小只需静态,例如。如果列表有 4 个元素,那么它只需要长度为 4 的排列,而不是 3、2 和 1。我猜这将需要递归。独特的组合会很有帮助,但我希望看到它以最简单(没有独特性?)的形式来发挥我的小狗力量。

How can I obtain all combinations for a list where combination size need only be static eg. if the list has 4 elements then it will only need permutations of length 4 not 3, 2 and 1. I'm guessing this will need recursion. Unique combinations would be helpful but I'd like to see it in simplest (no uniqueness?) form for my puppy power.

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

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

发布评论

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

评论(1

谎言 2024-12-09 09:21:23
set s = { x1, x2, x3, x4 };
array solution;

permute( i ) =>
    if( i == 0 ) => print and return;

    while unused elements in set =>
        take element from set which is not in solution;
        put element in solution;
        permute( i - 1 );
        remove element from solution;

如果您想要更具体的答案,您必须创建一个更具体的问题。显示一些代码/努力/无论什么..

set s = { x1, x2, x3, x4 };
array solution;

permute( i ) =>
    if( i == 0 ) => print and return;

    while unused elements in set =>
        take element from set which is not in solution;
        put element in solution;
        permute( i - 1 );
        remove element from solution;

If you want a more specific answer you have to create a more specific question. Show some code/effort/whatever..

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