为了账号安全,请及时绑定邮箱和手机立即绑定

使用 JavaScript 混合数组

使用 JavaScript 混合数组

胡说叔叔 2022-01-01 20:42:54
混合多个数组的最佳方法是什么,如下图所示,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);
查看完整描述

3 回答

?
狐的传说

TA贡献1804条经验 获得超3个赞

您可以使用 lodash 作为您的解决方案。


const { flow, zip, flatten, filter} = _


const doTheMagic = flow(

  zip,

  flatten,

  filter

)


const one = [1, 2, 3]

const two = ['😕', '🤯', '🙈', '🙊', '🙉', '😃']

const three = ['foo', 'bar', 'wow', 'okay']


const result = doTheMagic(one, two, three)


console.log(result)

<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.15/lodash.min.js"></script>


处理不同长度的数组,并利用函数式编程来编写优雅的代码。


这是一个要运行的代码笔:https ://codepen.io/matteodem/pen/mddQrwe


查看完整回答
反对 回复 2022-01-01
?
四季花海

TA贡献1811条经验 获得超5个赞

let a1 = [1, 2, 3, 4, 5];

let a2 = ["🏯", "🏜", "🏭", "🎢", "🌠", "🏗"];

let a3 = ['one', 'two', 'three', 'four', 'five'];


const doTheMagic = arrayOfArrays => {

  let maxLength = 0;

  let result = [];

  for (arr in arrayOfArrays) {

    maxLength = Math.max(maxLength, arrayOfArrays[arr].length);

  }

  for (let i = 0; i < maxLength; i++) {

    for (let j = 0; j < arrayOfArrays.length; j++) {

      if (arrayOfArrays[j][i]) {

        result.push(arrayOfArrays[j][i]);

      }

    }

  }

  return result;

}


console.log(doTheMagic([a1, a2, a3]));


查看完整回答
反对 回复 2022-01-01
?
慕沐林林

TA贡献2016条经验 获得超9个赞

这是我自己的解决方案,我正在寻找更好的主意


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);


查看完整回答
反对 回复 2022-01-01
  • 3 回答
  • 0 关注
  • 252 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信