我试图在JavaScript数组中查找元素的所有实例的索引,例如“ Nano”。
var Cars = ["Nano", "Volvo", "BMW", "Nano", "VW", "Nano"];
我尝试了jQuery.inArray或类似的.indexOf(),但是它只给出了元素的最后一个实例的索引,在这种情况下为5。
如何获得所有实例的信息?
我试图在JavaScript数组中查找元素的所有实例的索引,例如“ Nano”。
var Cars = ["Nano", "Volvo", "BMW", "Nano", "VW", "Nano"];
我尝试了jQuery.inArray或类似的.indexOf(),但是它只给出了元素的最后一个实例的索引,在这种情况下为5。
如何获得所有实例的信息?
Answers:
该.indexOf()
方法有一个可选的第二个参数,用于指定从其开始搜索的索引,因此您可以在循环中调用它以查找特定值的所有实例:
function getAllIndexes(arr, val) {
var indexes = [], i = -1;
while ((i = arr.indexOf(val, i+1)) != -1){
indexes.push(i);
}
return indexes;
}
var indexes = getAllIndexes(Cars, "Nano");
您并没有真正弄清楚如何使用索引,因此我的函数将它们作为数组返回(或者如果找不到该值,则返回一个空数组),但是您可以对各个索引值进行其他操作在循环内。
更新:根据VisioN的评论,简单的for循环将更有效地完成相同的工作,并且更易于理解,因此更易于维护:
function getAllIndexes(arr, val) {
var indexes = [], i;
for(i = 0; i < arr.length; i++)
if (arr[i] === val)
indexes.push(i);
return indexes;
}
.indexOf()
,所以我想证明它可以完成这项工作。(我想我认为OP可以弄清楚如何使用for循环来完成它。)当然,还有其他方法可以做到这一点,例如Cars.reduce(function(a, v, i) { if (v==="Nano") a.push(i); return a; }, []);
indexes
不是indices
:P
另一种替代解决方案是使用Array.prototype.reduce()
:
["Nano","Volvo","BMW","Nano","VW","Nano"].reduce(function(a, e, i) {
if (e === 'Nano')
a.push(i);
return a;
}, []); // [0, 3, 5]
:)
是的,我想可能reduce
是一个不错的选择。
array.reduce((a, e, i) => (e === value) ? a.concat(i) : a, [])
contat
的速度慢于push
,因此我坚持答案。
使用Array.prototype.map()和Array.prototype.filter()的另一种方法:
var indices = array.map((e, i) => e === value ? i : '').filter(String)
map(…)
在每次迭代中检查e
和的相等性value
。当它们匹配时,返回索引,否则返回一个空字符串。要摆脱那些虚假的值,请filter(String)
确保结果仅包含字符串类型的值,并且不为空。filter(String)
也可以写成:filter(e => e !== '')
es6样式的更简单方法。
const indexOfAll = (arr, val) => arr.reduce((acc, el, i) => (el === val ? [...acc, i] : acc), []);
//Examples:
var cars = ["Nano", "Volvo", "BMW", "Nano", "VW", "Nano"];
indexOfAll(cars, "Nano"); //[0, 3, 5]
indexOfAll([1, 2, 3, 1, 2, 3], 1); // [0,3]
indexOfAll([1, 2, 3], 4); // []
您可以使用map
和编写一个简单易读的解决方案filter
:
const nanoIndexes = Cars
.map((car, i) => car === 'Nano' ? i : -1)
.filter(index => index !== -1);
编辑:如果您不需要支持IE / Edge(或正在转译您的代码),ES2019就给了我们flatMap,它使您可以通过简单的一列代码进行操作:
const nanoIndexes = Cars.flatMap((car, i) => car === 'Nano' ? i : []);
const indexes = cars
.map((car, i) => car === "Nano" ? i : null)
.filter(i => i !== null)
这对我有用:
let array1 = [5, 12, 8, 130, 44, 12, 45, 12, 56];
let numToFind = 12
let indexesOf12 = [] // the number whose occurrence in the array we want to find
array1.forEach(function(elem, index, array) {
if (elem === numToFind) {indexesOf12.push(index)}
return indexesOf12
})
console.log(indexesOf12) // outputs [1, 5, 7]
只是共享另一种方法,您也可以使用函数发生器来获得结果:
function findAllIndexOf(target, needle) {
return [].concat(...(function*(){
for (var i = 0; i < target.length; i++) if (target[i] === needle) yield [i];
})());
}
var target = "hellooooo";
var target2 = ['w','o',1,3,'l','o'];
console.log(findAllIndexOf(target, 'o'));
console.log(findAllIndexOf(target2, 'o'));
每当遇到条件“ arr [i] == value”时,我们都可以使用Stack并将“ i”压入堆栈
检查一下:
static void getindex(int arr[], int value)
{
Stack<Integer>st= new Stack<Integer>();
int n= arr.length;
for(int i=n-1; i>=0 ;i--)
{
if(arr[i]==value)
{
st.push(i);
}
}
while(!st.isEmpty())
{
System.out.println(st.peek()+" ");
st.pop();
}
}
javascript
,而我的答案是Java
相信的吗?
["a", "b", "a", "b"]
.map((val, index) => ({ val, index }))
.filter(({val, index}) => val === "a")
.map(({val, index}) => index)
=> [0, 2]
您可以使用Polyfill
if (!Array.prototype.filterIndex) {
Array.prototype.filterIndex = function (func, thisArg) {
'use strict';
if (!((typeof func === 'Function' || typeof func === 'function') && this))
throw new TypeError();
let len = this.length >>> 0,
res = new Array(len), // preallocate array
t = this, c = 0, i = -1;
let kValue;
if (thisArg === undefined) {
while (++i !== len) {
// checks to see if the key was set
if (i in this) {
kValue = t[i]; // in case t is changed in callback
if (func(t[i], i, t)) {
res[c++] = i;
}
}
}
}
else {
while (++i !== len) {
// checks to see if the key was set
if (i in this) {
kValue = t[i];
if (func.call(thisArg, t[i], i, t)) {
res[c++] = i;
}
}
}
}
res.length = c; // shrink down array to proper size
return res;
};
}
像这样使用它:
[2,23,1,2,3,4,52,2].filterIndex(element => element === 2)
result: [0, 3, 7]
findIndex
仅检索与回调输出匹配的第一个索引。您可以findIndexes
通过扩展Array,然后将数组转换为新结构来实现自己的结构。
class EnhancedArray extends Array {
findIndexes(where) {
return this.reduce((a, e, i) => (where(e, i) ? a.concat(i) : a), []);
}
}
/*----Working with simple data structure (array of numbers) ---*/
//existing array
let myArray = [1, 3, 5, 5, 4, 5];
//cast it :
myArray = new EnhancedArray(...myArray);
//run
console.log(
myArray.findIndexes((e) => e===5)
)
/*----Working with Array of complex items structure-*/
let arr = [{name: 'Ahmed'}, {name: 'Rami'}, {name: 'Abdennour'}];
arr= new EnhancedArray(...arr);
console.log(
arr.findIndexes((o) => o.name.startsWith('A'))
)
如果您打算使用下划线/破折号,则可以
var Cars = ["Nano", "Volvo", "BMW", "Nano", "VW", "Nano"];
_.chain(Cars).map((v, i)=> [i, v === "Nano"]).filter(v=>v[1]).map(v=>v[0]).value()
[0, 3, 5]
(["Nano", "Volvo", "BMW", "Nano", "VW", "Nano"]).map((v, i)=> [i, v === "Nano"]).filter(v=>v[1]).map(v=>v[0])
for
用索引数组填充的单循环的更快替代方法。