混合多个数组的最佳方法是什么,如下图所示,
PS:
我不知道每个数组的长度是多少
数组将包含 +10000 个元素
将有 3 个以上的数组
我为它制定了一个解决方案,但我正在寻找任何更好的解决方案
这是我自己的解决方案,我正在寻找更好的主意
import { compact, flattenDeep } from "lodash/array";
export const doTheMagic = master => {
const longest = master.reduce((p, c, i, a) => (a[p].length > c.length ? p : i), 0);
const mixed = master[longest].map((i, k) => {
return master.map((o, a) => {
if (master[a][k]) return master[a][k];
});
});
const flaten = flattenDeep(mixed);
return compact(flaten);// to remove falsey values
};
const one = [1,2,3];
const two = ['a','b','c','d','e'];
const three = ['k','l','m','n'];
const mix = doTheMagic([one,two,three]);
console.log('mix: ', mix);
狐的传说
四季花海
慕沐林林
相关分类