comments | difficulty | edit_url |
---|---|---|
true |
中等 |
设计一个算法,找出数组中两数之和为指定值的所有整数对。一个数只能属于一个数对。
示例 1:
输入: nums = [5,6,5], target = 11 输出: [[5,6]]
示例 2:
输入: nums = [5,6,5,6], target = 11 输出: [[5,6],[5,6]]
提示:
nums.length <= 100000
我们可以使用哈希表来存储数组中的元素,键为数组中的元素,值为该元素出现的次数。
遍历数组,对于每个元素
遍历结束后,即可得到答案。
时间复杂度
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;
}
class Solution {
func pairSums(_ nums: [Int], _ target: Int) -> [[Int]] {
var countMap = [Int: Int]()
var ans = [[Int]]()
for x in nums {
let y = target - x
if let yCount = countMap[y], yCount > 0 {
ans.append([x, y])
countMap[y] = yCount - 1
if countMap[y] == 0 {
countMap.removeValue(forKey: y)
}
} else {
countMap[x, default: 0] += 1
}
}
return ans
}
}