2019-06-11
描述
基于提供的迭代方法,根据数组原有的排序规则把对象插入最接近且索引值最大的位置后并返回该索引值。
提示
- 宽松的检查数组的排序规则是否为降序
- 使用
Array.prototype.map()
让数组中的所有元素进行迭代计算 - 使用
Array.prototype.reverse()
和Array.prototype.findIndex()
获取元素在迭代函数后应该插入的最大索引值
代码
const sortedLastIndexBy = (arr, n, fn) => {
const isDescending = fn(arr[0]) > fn(arr[arr.length - 1]);
const val = fn(n);
const index = arr
.map(fn)
.reverse()
.findIndex(el => (isDescending ? val <= el : val >= el));
return index === -1 ? 0 : arr.length - index;
};
示例
按 x 值升序将对象插入数组中:
sortedLastIndexBy([{ x: 4 }, { x: 5 }], { x: 4 }, o => o.x); // 1
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于