Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LeetCode题解:1. 两数之和,JavaScript,HashMap,详细注释 #106

Open
chencl1986 opened this issue Jul 22, 2020 · 0 comments
Open

Comments

@chencl1986
Copy link
Owner

原题链接:
https://leetcode-cn.com/problems/two-sum/

解题思路:

  1. 遍历数组,每次保存target - nums[index]和index。
  2. 下次遍历时,如果在Map中找到了target - nums[index],就表示找到了两个数的和为target。
  3. 此时可以直接从Map中取出保存的index,与当前值的index组合则为结果。
/**
 * @param {number[]} nums
 * @param {number} target
 * @return {number[]}
 */
var twoSum = function (nums, target) {
  // 用Map保存已遍历的index结果
  let map = new Map();

  for (let index = 0; index < nums.length; index++) {
    // 判断当前值是否已在Map中存储,如果有就表示找到了两个数可以想加等于target
    if (typeof map.get(nums[index]) === 'number') {
      // 返回已保存的index和当前值的index
      return [map.get(nums[index]), index];
    }
    // 将当前值与target的差,以及当前值的index保持在Map
    // 当遍历到target - nums[index],就表示找到了两数之和为target,可以直接把当前的index取出
    map.set(target - nums[index], index);
  }
};
@chencl1986 chencl1986 changed the title LeetCode题解:1. 两数之和,JavaScript,HashMap单词遍历,详细注释 LeetCode题解:1. 两数之和,JavaScript,HashMap遍历,详细注释 Aug 16, 2021
@chencl1986 chencl1986 changed the title LeetCode题解:1. 两数之和,JavaScript,HashMap遍历,详细注释 LeetCode题解:1. 两数之和,JavaScript,HashMap,详细注释 Aug 16, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant