84669 人学习
152542 人学习
20005 人学习
5487 人学习
7821 人学习
359900 人学习
3350 人学习
180660 人学习
48569 人学习
18603 人学习
40936 人学习
1549 人学习
1183 人学习
32909 人学习
如何得出多有组合?用js有好的思路指点一下吗~
考来的。。。
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); }); }); }); });
= = 丧心病狂的遍历。。。
可以用有向图方法,得出四个节点所有路径
栈和队列
考来的。。。
= = 丧心病狂的遍历。。。
可以用有向图方法,得出四个节点所有路径
栈和队列