我如何与数组中的其余元素进行比较

时间:2020-08-13 23:20:36

标签: javascript arrays

我正在研究一个leetcode问题,我想不出一种将数组中其余元素相互比较的方法。我想出最大和最小的数字,但是要与其他数字进行比较是我遇到的麻烦。在下面,您将找到问题及其处理方法:

比当前数字小多少个数字?

给出数组nums,对于每个nums [i]找出数组中比其小的数字。也就是说,对于每个nums [i],您都必须计算有效j的数量,以使j!= i和nums [j]

以数组形式返回答案。

示例1:

Input: nums = [8,1,2,2,3]
Output: [4,0,1,1,3]
Explanation: 
For nums[0]=8 there exist four smaller numbers than it (1, 2, 2 and 3). 
For nums[1]=1 does not exist any smaller number than it.
For nums[2]=2 there exist one smaller number than it (1). 
For nums[3]=2 there exist one smaller number than it (1). 
For nums[4]=3 there exist three smaller numbers than it (1, 2 and 2).

我的工作


var smallerNumbersThanCurrent = (nums) => {
    const output = []

    const max = nums.reduce(function(a, b) {
        return Math.max(a, b);
    });

    const min = nums.reduce(function(a, b) {
        return Math.min(a, b);
    });


    for(let i = 0; i < nums.length; i++){
        if(nums[i] === max){
            output.push(nums.length - 1)
        } else if (nums[i] === min){
            output.push(0)
        }
        else if (nums[i] < max && nums[i] > min){
            //how do i compare with rest of the elements in the array?
        
        } 
       }
    }

5 个答案:

答案 0 :(得分:1)

一种方法是在值小于当前值的情况下过滤数组,然后计算过滤后的数组中的值数:

const nums = [8,1,2,2,3];

const smallerNums = nums.map(v => nums.filter(n => n < v).length);

console.log(smallerNums); // [4,0,1,1,3]

或者,您可以减少点数,这应该会更快:

const nums = [8, 1, 2, 2, 3];

const smallerNums = nums.map(v => nums.reduce((c, n) => c += (n < v), 0));

console.log(smallerNums); // [4,0,1,1,3]

答案 1 :(得分:1)

一种简单得多的方法是简单地对数组进行排序,然后元素的索引将告诉您小于它的数量:

const nums = [8,1,2,2,3]
const sorted = [...nums].sort();
const result = nums.map((i) => {
    return sorted.findIndex(s => s === i);
});
console.log(result);

这样做的好处是,您不必在整个数组中搜索每个数字。

答案 2 :(得分:1)

使用嵌套循环。

nums = [8,1,2,2,3];
answer = [];
for (let i = 0; i < nums.length; i++) {
  let count = 0;
  for (let j = 0; j < nums.length; j++) {
    if (nums[j] < nums[i]) {
      count++;
    }
  }
  answer.push(count);
  console.log(`For nums[${i}]=${nums[i]} there are ${count} lower numbers`);
}
console.log(`Answer: ${answer}`);

没有必要测试i != j,因为数字永远不会低于其自身。

答案 3 :(得分:1)

我想要:

function rankZero(array){
  const s = [...array], r = [];
  s.sort((a, b)=>{
    return a - b;
  });
  for(let n of array){
    r.push(s.indexOf(n));
  }
  return r;
}
console.log(rankZero([8, 1, 2, 2, 3]));

答案 4 :(得分:0)

受@tao的启发,我对每个解决方案进行了性能测试。在我的计算机(具有64GB RAM的Intel Core I9-9900)上,@ StackSlave的解决方案始终是最快的,其次是其他排序解决方案,reduce解决方案,基本迭代和过滤器。您可以在下面自己运行测试:

const datalength = 1000;
const iterations = 100;

const getRandom = (min, max) => Math.random() * (max - min) + min;
const data = Array.from({
  length: datalength
}, () => getRandom(1, 100));

const mapper = arr => arr.map(i => arr.filter(n => n < i).length);

const sorter = nums => {
  const sorted = [...nums].sort();
  const result = nums.map((i) => {
    return sorted.findIndex(s => s === i);
  });
};

const iterator = arr => {
  const answer = [];
  for (let i = 0; i < arr.length; i++) {
    let count = 0;
    for (let j = 0; j < arr.length; j++) {
      if (arr[j] < arr[i]) {
        count++;
      }
    }
    answer.push(count);
  }
  return answer;
};

const rankZero = array => {
  const s = [...array],
    r = [];
  s.sort((a, b) => {
    return a - b;
  });
  for (let n of array) {
    r.push(s.indexOf(n));
  }
  return r;
}

const reducer = arr => arr.map(v => arr.reduce((c, n) => c += (n < v), 0));

let fns = {
  'iterator': iterator,
  'mapper': mapper,
  'sorter': sorter,
  'reducer': reducer,
  'rankZero': rankZero
}

for (let [name, fn] of Object.entries(fns)) {
  let total = 0;
  for (i = 0; i < iterations; i++) {
    let t0 = performance.now();
    fn(data);
    let t1 = performance.now();
    total += t1 - t0;
  }
  console.log(name, (total / iterations).toFixed(2));
}