递归生成列表的所有可能排列

递归生成列表的所有可能排列,第1张

递归生成列表的所有可能排列

如果

allPossibleItems
包含x和y这两个不同的元素,那么您将x和y依次写入列表,直到到达
DESIRED_SIZE
。那是你真正想要的吗?如果选择
DESIRED_SIZE
足够大,则堆栈上将有太多的递归调用,因此会出现SO异常。

我会做的(如果原件没有复本/重复品)是:

  public <E> List<List<E>> generatePerm(List<E> original) {     if (original.isEmpty()) {       List<List<E>> result = new ArrayList<>();        result.add(new ArrayList<>());        return result;      }     E firstElement = original.remove(0);     List<List<E>> returnValue = new ArrayList<>();     List<List<E>> permutations = generatePerm(original);     for (List<E> smallerPermutated : permutations) {       for (int index=0; index <= smallerPermutated.size(); index++) {         List<E> temp = new ArrayList<>(smallerPermutated);         temp.add(index, firstElement);         returnValue.add(temp);       }     }     return returnValue;   }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5623138.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存