返回介绍

lcci / 16.24.Pairs With Sum / README

发布于 2024-06-17 01:04:42 字数 3084 浏览 0 评论 0 收藏 0

面试题 16.24. 数对和

中文文档

题目描述

设计一个算法,找出数组中两数之和为指定值的所有整数对。一个数只能属于一个数对。

示例 1:

输入: nums = [5,6,5], target = 11
输出: [[5,6]]

示例 2:

输入: nums = [5,6,5,6], target = 11
输出: [[5,6],[5,6]]

提示:

  • nums.length <= 100000

解法

方法一:哈希表

我们可以使用哈希表来存储数组中的元素,键为数组中的元素,值为该元素出现的次数。

遍历数组,对于每个元素 $x$,我们计算 $y = target - x$,如果哈希表中存在 $y$,则说明存在一对数 $(x, y)$,我们将其加入答案,并减少 $y$ 的出现次数。如果哈希表中不存在 $y$,则说明不存在这样的数对,我们将 $x$ 的出现次数加 $1$。

遍历结束后,即可得到答案。

时间复杂度 $O(n)$,空间复杂度 $O(n)$。其中 $n$ 为数组的长度。

class Solution:
  def pairSums(self, nums: List[int], target: int) -> List[List[int]]:
    cnt = Counter()
    ans = []
    for x in nums:
      y = target - x
      if cnt[y]:
        cnt[y] -= 1
        ans.append([x, y])
      else:
        cnt[x] += 1
    return ans
class Solution {
  public List<List<Integer>> pairSums(int[] nums, int target) {
    Map<Integer, Integer> cnt = new HashMap<>();
    List<List<Integer>> ans = new ArrayList<>();
    for (int x : nums) {
      int y = target - x;
      if (cnt.containsKey(y)) {
        ans.add(List.of(x, y));
        if (cnt.merge(y, -1, Integer::sum) == 0) {
          cnt.remove(y);
        }
      } else {
        cnt.merge(x, 1, Integer::sum);
      }
    }
    return ans;
  }
}
class Solution {
public:
  vector<vector<int>> pairSums(vector<int>& nums, int target) {
    unordered_map<int, int> cnt;
    vector<vector<int>> ans;
    for (int x : nums) {
      int y = target - x;
      if (cnt[y]) {
        --cnt[y];
        ans.push_back({x, y});
      } else {
        ++cnt[x];
      }
    }
    return ans;
  }
};
func pairSums(nums []int, target int) (ans [][]int) {
  cnt := map[int]int{}
  for _, x := range nums {
    y := target - x
    if cnt[y] > 0 {
      cnt[y]--
      ans = append(ans, []int{x, y})
    } else {
      cnt[x]++
    }
  }
  return
}
function pairSums(nums: number[], target: number): number[][] {
  const cnt = new Map();
  const ans: number[][] = [];
  for (const x of nums) {
    const y = target - x;
    if (cnt.has(y)) {
      ans.push([x, y]);
      const yCount = cnt.get(y) - 1;
      if (yCount === 0) {
        cnt.delete(y);
      } else {
        cnt.set(y, yCount);
      }
    } else {
      cnt.set(x, (cnt.get(x) || 0) + 1);
    }
  }
  return ans;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文