admin管理员组文章数量:1343349
Lets say I have several sets of options in Javascript
var color = ["red", "blue", "green","yellow"];
var size = ["small", "medium", "large"];
var weight = ["heavy", "light"];
what is an efficient algorithm to get all the binations of these options in an array that looks like this
["red and small and heavy", "red and small and light", "red and medium and heavy" ...]
Here's the caveat though
This function must be able to take any number of sets of options
I have a feeling that the proper way to do this is through some sort of tree traversal, but its too early to have fully thought this through and I haven't had my coffee yet
Lets say I have several sets of options in Javascript
var color = ["red", "blue", "green","yellow"];
var size = ["small", "medium", "large"];
var weight = ["heavy", "light"];
what is an efficient algorithm to get all the binations of these options in an array that looks like this
["red and small and heavy", "red and small and light", "red and medium and heavy" ...]
Here's the caveat though
This function must be able to take any number of sets of options
I have a feeling that the proper way to do this is through some sort of tree traversal, but its too early to have fully thought this through and I haven't had my coffee yet
Share Improve this question edited Jan 11, 2012 at 16:56 Marcin 49.9k18 gold badges136 silver badges207 bronze badges asked Jan 11, 2012 at 16:33 Greg GuidaGreg Guida 7,5124 gold badges31 silver badges40 bronze badges4 Answers
Reset to default 8function permutations(choices, callback, prefix) {
if(!choices.length) {
return callback(prefix);
}
for(var c = 0; c < choices[0].length; c++) {
permutations(choices.slice(1), callback, (prefix || []).concat(choices[0][c]));
}
}
var color = ["red", "blue", "green","yellow"];
var size = ["small", "medium", "large"];
var weight = ["heavy", "light"];
permutations([color, size, weight], console.log.bind(console));
Seems to work...
[ 'red', 'small', 'heavy' ]
[ 'red', 'small', 'light' ]
[ 'red', 'medium', 'heavy' ]
[ 'red', 'medium', 'light' ]
[ 'red', 'large', 'heavy' ]
[ 'red', 'large', 'light' ]
[ 'blue', 'small', 'heavy' ]
[ 'blue', 'small', 'light' ]
[ 'blue', 'medium', 'heavy' ]
[ 'blue', 'medium', 'light' ]
[ 'blue', 'large', 'heavy' ]
[ 'blue', 'large', 'light' ]
[ 'green', 'small', 'heavy' ]
[ 'green', 'small', 'light' ]
[ 'green', 'medium', 'heavy' ]
[ 'green', 'medium', 'light' ]
[ 'green', 'large', 'heavy' ]
[ 'green', 'large', 'light' ]
[ 'yellow', 'small', 'heavy' ]
[ 'yellow', 'small', 'light' ]
[ 'yellow', 'medium', 'heavy' ]
[ 'yellow', 'medium', 'light' ]
[ 'yellow', 'large', 'heavy' ]
[ 'yellow', 'large', 'light' ]
That would be the cartesian product of those sets: http://en.wikipedia/wiki/Cartesian_product
Also see: https://stackoverflow./questions/4796678/javascript-golf-cartesian-product
Tree traversal is the way to go, well recursion to be exact.
The working principle is, at each depth you would iterate through all the options for that depth, in your case the options for a list. When you choose element form last depth, you have one full set.
The console.log function mentioned in #1 above should be as:
function log(message){
if(typeof console == "object"){
console.log(message);
}
}
Then, change the call to the function to:
binations([color, size, weight], log);
本文标签: algorithmCreating Combinations in JavaScriptStack Overflow
版权声明:本文标题:algorithm - Creating Combinations in JavaScript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743694209a2523223.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论