为了账号安全,请及时绑定邮箱和手机立即绑定

js给出所有组合

js给出所有组合

湖上湖 2018-11-07 13:13:42
如何得出多有组合?用js有好的思路指点一下吗~
查看完整描述

1 回答

?
守着星空守着你

TA贡献1799条经验 获得超8个赞

考来的。。。

function permute(input) {

  var permArr = [],

  usedChars = [];

  function main(input){

    var i, ch;

    for (i = 0; i < input.length; i++) {

      ch = input.splice(i, 1)[0];

      usedChars.push(ch);

      if (input.length == 0) {

        permArr.push(usedChars.slice());

      }

      main(input);

      input.splice(i, 0, ch);

      usedChars.pop();

    }

    return permArr;

  }

  return main(input).join('\n');

};

console.log(permute(['foo','bar','hello','world']));


查看完整回答
反对 回复 2018-12-12
  • 1 回答
  • 0 关注
  • 565 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信