Lodash _.sortedIndex() 方法
_.sortedIndex() 方法用于返回可以插入元素的数组的最低索引并保持其排序顺序。它使用二进制搜索。
句法:
_.sortedIndex(array, value)
参数:此方法接受上面提到的两个参数,如下所述:
- array:此参数保存已排序的数组。
- value:此参数保存要评估的值。
返回值:此方法返回值应插入数组的索引。
示例 1:这里使用 const _ = require('lodash') 将 lodash 库导入文件。
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
let x = [1, 2, 3, 4, 4, 4, 5, 6, 6]
// Use of _.sortedIndex()
// method
let index = _.sortedIndex(x, 4);
// Printing the output
console.log(index);
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
let x = ['a', 'b', 'c', 'd', 'e', 'e', 'e', 'f']
// Use of _.sortedIndex()
// method
let index = _.sortedIndex(x, 'e');
// Printing the output
console.log(index);
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
let x = ['ajax', 'django', 'mongoDb',
'react', 'reactnative', 'yarn']
// Use of _.sortedIndex()
// method
let index = _.sortedIndex(x, 'ruby');
// Printing the output
console.log(index);
输出:
3
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
let x = ['a', 'b', 'c', 'd', 'e', 'e', 'e', 'f']
// Use of _.sortedIndex()
// method
let index = _.sortedIndex(x, 'e');
// Printing the output
console.log(index);
输出:
4
示例 3:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
let x = ['ajax', 'django', 'mongoDb',
'react', 'reactnative', 'yarn']
// Use of _.sortedIndex()
// method
let index = _.sortedIndex(x, 'ruby');
// Printing the output
console.log(index);
输出:
5
注意:这在普通 JavaScript 中不起作用,因为它需要安装库 lodash。