javascript - js给出所有组合
过去多啦不再A梦
过去多啦不再A梦 2017-05-19 10:15:45
0
4
404

如何得出多有组合?
用js
有好的思路指点一下吗~

过去多啦不再A梦
过去多啦不再A梦

全部回复(4)
我想大声告诉你

考来的。。。

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']));
刘奇
var arr = ['foo', 'bar', 'hello', 'world']; 

// 4 3 2 1 
var first = {}
var result = []; 
arr.forEach((first, idx, its) => {
    its.filter(e => e!==first).forEach((sec, idx, its) => {
        its.filter(e => e!==sec).forEach((third, idx, its)=> { 
            its.filter(e => e!=third).forEach((forth, idx, its) => {
                console.log(first, sec, third, forth); 
                result.push(first + sec + third + forth); 
            }); 
        });
    });
});

= = 丧心病狂的遍历。。。

習慣沉默

可以用有向图方法,得出四个节点所有路径

洪涛

栈和队列

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!