如何在JavaScript中获取一个n长度数组的所有k长度组合?

huangapple go评论139阅读模式
英文:

How can I get all k-length combinations of an n-length array in JavaScript?

问题

以下是代码的翻译部分:

  1. 我有这个问题*https://stackoverflow.com/questions/75598430/how-to-generate-all-possible-melody-strings-for-this-melody-generator-minus-the*,但也许它可以简化为子问题,比如这个当前的问题。
  2. 在这里我想知道如何取一个长度为 `n` 的数组然后找到所有长度为 `k` 的元素的组合
  3. 举个例子你有这样一个数组
  4. [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ]
  5. 而你想找到所有长度为4的子数组的组合就像这样
  6. [ 1, 2, 3, 4 ]
  7. [ 2, 3, 4, 5 ]
  8. ...
  9. [ 1, 2, 4, 5 ]
  10. ...
  11. [ 1, 2, 3, 6 ]
  12. 你该如何在 JavaScript 中实现这个我一开始就感到迷茫
  13. ```javascript
  14. function getCombinations(k, n) {
  15. const array = new Array(n)
  16. array.forEach((x, i) => {
  17. array[i] = i + 1
  18. })
  19. const results = []
  20. for (let i = 0; i < array.length; i++) {
  21. for (let j = 0; j < array.length; j++) {
  22. let l = k
  23. const result = []
  24. while (l--) {
  25. result.push(j) // ???
  26. }
  27. }
  28. }
  29. }

希望这对你有所帮助。如果需要更多解释或帮助,请告诉我。

英文:

I have this question, https://stackoverflow.com/questions/75598430/how-to-generate-all-possible-melody-strings-for-this-melody-generator-minus-the, but perhaps it can be simplified into subproblems, such as this current question.

Here, I am wondering how to take an array of length n and find all combinations of k number of elements.

So for example, you have an array like this:

  1. [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ]

And you want to find all combinations of length-4 subarrays which would be something like this:

  1. [ 1, 2, 3, 4 ]
  2. [ 2, 3, 4, 5 ]
  3. ...
  4. [ 1, 2, 4, 5 ]
  5. ...
  6. [ 1, 2, 3, 6 ]

How would you do that in JavaScript? I get lost right away:

  1. function getCombinations(k, n) {
  2. const array = new Array(n)
  3. array.forEach((x, i) =&gt; {
  4. array[i] = i + 1
  5. })
  6. const results = []
  7. for (let i = 0; i &lt; array.length; i++) {
  8. for (let j = 0; j &lt; array.length; j++) {
  9. let l = k
  10. const result = []
  11. while (l--) {
  12. result.push(j) // ???
  13. }
  14. }
  15. }
  16. }

答案1

得分: 3

我建议将创建数组的逻辑与从数组中获取组合的逻辑拆分成两个不同的函数。

对于获取组合,你可以考虑使用一个生成器函数:

  1. const sequence = (length) => Array.from({length}, (_, i) => i + 1);
  2. function* getCombinations(array, k, taken=[]) {
  3. if (k == 0) return yield taken;
  4. if (array.length < k) return;
  5. yield* getCombinations(array.slice(1), k - 1, taken.concat(array[0]));
  6. yield* getCombinations(array.slice(1), k, taken);
  7. }
  8. const combis = [...getCombinations(sequence(6), 4)];
  9. console.log(combis);

请注意,以上是你提供的代码的翻译部分。

英文:

I would suggest splitting the logic for creating the array from getting combinations from it into two different functions.

For getting combinations, you might want to consider using a generator function:

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-js -->

  1. const sequence = (length) =&gt; Array.from({length}, (_, i) =&gt; i + 1);
  2. function* getCombinations(array, k, taken=[]) {
  3. if (k == 0) return yield taken;
  4. if (array.length &lt; k) return;
  5. yield* getCombinations(array.slice(1), k - 1, taken.concat(array[0]));
  6. yield* getCombinations(array.slice(1), k, taken);
  7. }
  8. const combis = [...getCombinations(sequence(6), 4)];
  9. console.log(combis);

<!-- end snippet -->

huangapple
  • 本文由 发表于 2023年3月1日 13:26:59
  • 转载请务必保留本文链接:https://go.coder-hub.com/75599886.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定