JS 笛卡尔积 算法

2018-09-15  本文已影响22人  TouchMe丶
function calcDescartes (array) {
    if (array.length < 2) return array[0] || [];
    return [].reduce.call(array, function (col, set) {
        var res = [];
        col.forEach(function (c) {
            set.forEach(function (s) {
                var t = [].concat(Array.isArray(c) ? c : [c]);
                t.push(s);
                res.push(t);
            })
        });
        return res;
    });
}

console.log(calcDescartes([[1,2,3],['a','b','c']]));

来自 http://www.while0.com/222.html

上一篇下一篇

猜你喜欢

热点阅读