登录
首页 >  文章 >  前端

LeetCode:二和问题

来源:dev.to

时间:2024-12-25 17:57:51 347浏览 收藏

有志者,事竟成!如果你在学习文章,那么本文《LeetCode:二和问题》,就很适合你!文章讲解的知识点主要包括,若是你对本文感兴趣,或者是想搞懂其中某个知识点,就请你继续往下看吧~

LeetCode:二和问题

twosum 问题是一个经典的编码挑战,测试您的问题解决能力和算法技能。

在这篇文章中,我们将首先看看一个易于理解的简单解决方案。然后,我们会逐步优化它,提高它的效率。无论您是算法新手还是准备面试,本指南都将帮助您解决问题。让我们开始吧!

let inputarray = [2, 7, 11, 15]
let target = 9
console.log(twosum(inputarray, target)) // output: [0, 1]

让我们看看函数应该处理的输入和输出。

给定数组 [2,7,11,15] 和目标 9,输出将为 [0,1].

这是因为索引 0 和 1 处的值加起来为 9,这是目标。

function twosum(nums, target) {
  const hashmap = {}
}

我们会想到一个解决方案,创建一个 hashmap 将数组中的数字存储为键,将其索引存储为值。

function twosum(nums, target) {
  const hashmap = {}

  for (let i = 0; i < nums.length; i++) {
    hashmap[nums[i]] = i
  }
}

这是解决方案的第一部分:准备 hashmap。

在下一个循环中,我们检查 hashmap 是否包含目标减去数组中当前数字的补集。

function twosum(nums, target) {
  const hashmap = {}

  for (let i = 0; i < nums.length; i++) {
    hashmap[nums[i]] = i
  }

  for (let i = 0; i < nums.length; i++) {
    const complement = target - nums[i]

    if (hashmap[complement] !== undefined && hashmap[complement] !== i) {
      return [i, hashmap[complement]]
    }
  }
}

如果在 hashmap 中找到补集,我们就可以访问它的索引,因为我们有它的值。

然后,我们可以返回一个包含其值(补集的索引)以及 i 的数组,i 代表当前迭代。

在此解决方案中,我们看到我们正在创建两个单独的循环。我们可以将它们组合成一个循环,从而节省一次迭代。

function twosum(nums, target) {
  const hashmap = {}

  for (let i = 0; i < nums.length; i++) {
    const complement = target - nums[i]

    if (hashmap[complement] !== undefined && hashmap[complement] !== i) {
      return [i, hashmap[complement]]
    }
    hashmap[nums[i]] = i
  }
}

为了更加清晰,我们改进了条件并获得了以下代码:

function twoSum(nums, target) {
  const hashMap = {}

  for (let i = 0; i < nums.length; i++) {
    const complement = target - nums[i]

    if (complement in hashMap) {
      return [i, hashMap[complement]]
    }
    hashMap[nums[i]] = i
  }
}

let inputArray = [2, 7, 11, 15]
let target = 9
console.log(twoSum(inputArray, target)) // Output: [0, 1]

理论要掌握,实操不能落!以上关于《LeetCode:二和问题》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>