查找二维数组JavaScript的转置
我们需要编写一个JavaScript函数,该函数接受一个二维数组并返回其转置数组。
为此的代码将是-
方法1:使用Array.prototype.forEach()
const arr = [
[0, 1],
[2, 3],
[4, 5]
];
const transpose = arr => {
const res = [];
arr.forEach((el, ind) => {
el.forEach((elm, index) => {
res[index] = res[index] || [];
res[index][ind] = elm;
});
});
return res;
};
console.log(transpose(arr));方法2:使用Array.prototype.reduce()
const arr = [
[0, 1],
[2, 3],
[4, 5]
];
const transpose = arr => {
let res = [];
res = arr.reduce((acc, val, ind) => {
val.forEach((el, index) => {
acc[index] = acc[index] || [];
acc[index][ind] = el;
});
return acc;
}, [])
return res;
};
console.log(transpose(arr));两种方法在控制台中的输出将是-
[ [ 0, 2, 4 ], [ 1, 3, 5 ] ]
热门推荐
10 八一幼儿祝福语大全简短
11 公司乔迁食堂祝福语简短
12 婚礼结束聚餐祝福语简短
13 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短