代码实现时,由于 k 是定值,知道数对的较小值,也就知道了另一个值,因此我们可以只将数对的较小值放入 res,而不影响结果的正确性。判断完之后,再将当前元素放入 visited,作为后续判断潜在的 nums}[i]。
代码
[sol1-Python3]
1 2 3 4 5 6 7 8 9 10
classSolution: deffindPairs(self, nums: List[int], k: int) -> int: visited, res = set(), set() for num in nums: if num - k in visited: res.add(num - k) if num + k in visited: res.add(num) visited.add(num) returnlen(res)
[sol1-Java]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
classSolution { publicintfindPairs(int[] nums, int k) { Set<Integer> visited = newHashSet<Integer>(); Set<Integer> res = newHashSet<Integer>(); for (int num : nums) { if (visited.contains(num - k)) { res.add(num - k); } if (visited.contains(num + k)) { res.add(num); } visited.add(num); } return res.size(); } }
[sol1-C#]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
publicclassSolution { publicintFindPairs(int[] nums, int k) { ISet<int> visited = new HashSet<int>(); ISet<int> res = new HashSet<int>(); foreach (int num in nums) { if (visited.Contains(num - k)) { res.Add(num - k); } if (visited.Contains(num + k)) { res.Add(num); } visited.Add(num); } return res.Count; } }
[sol1-C++]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
classSolution { public: intfindPairs(vector<int>& nums, int k){ unordered_set<int> visited; unordered_set<int> res; for (int num : nums) { if (visited.count(num - k)) { res.emplace(num - k); } if (visited.count(num + k)) { res.emplace(num); } visited.emplace(num); } return res.size(); } };
funcfindPairs(nums []int, k int)int { visited := map[int]struct{}{} res := map[int]struct{}{} for _, num := range nums { if _, ok := visited[num-k]; ok { res[num-k] = struct{}{} } if _, ok := visited[num+k]; ok { res[num] = struct{}{} } visited[num] = struct{}{} } returnlen(res) }
[sol1-JavaScript]
1 2 3 4 5 6 7 8 9 10 11 12 13 14
var findPairs = function(nums, k) { const visited = newSet(); const res = newSet(); for (const num of nums) { if (visited.has(num - k)) { res.add(num - k); } if (visited.has(num + k)) { res.add(num); } visited.add(num); } return res.size; };
复杂度分析
时间复杂度:O(n),其中 n 是数组 nums 的长度。需要遍历 nums 一次。
空间复杂度:O(n),其中 n 是数组 nums 的长度。两个哈希表最多各存放 n 个元素。
方法二:排序 + 双指针
思路
题干的两个条件可以这样解读:
数对的两个元素的下标值不同。当 k = 0 时,数对的两个元素值可以相同,但下标值必须不同。
数对的两个元素差值为 k。
这样的解读之下,原来 i 和 j 的大小关系被抹除了,只要求 i 和 j 不相等。而差值为 k 这一要求则可以在排序后使用双指针来满足。
将原数组升序排序,并用新的指针 x 和 y 来搜索数对。即寻找不同的 (\textit{nums}[x], \textit{nums}[y]) 满足:
x < y
nums}[x] + k = \textit{nums}[y]
记录满足要求的 x 的个数并返回。
代码
[sol2-Python3]
1 2 3 4 5 6 7 8 9 10 11
classSolution: deffindPairs(self, nums: List[int], k: int) -> int: nums.sort() n, y, res = len(nums), 0, 0 for x inrange(n): if x == 0or nums[x] != nums[x - 1]: while y < n and (nums[y] < nums[x] + k or y <= x): y += 1 if y < n and nums[y] == nums[x] + k: res += 1 return res
[sol2-Java]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
classSolution { publicintfindPairs(int[] nums, int k) { Arrays.sort(nums); intn= nums.length, y = 0, res = 0; for (intx=0; x < n; x++) { if (x == 0 || nums[x] != nums[x - 1]) { while (y < n && (nums[y] < nums[x] + k || y <= x)) { y++; } if (y < n && nums[y] == nums[x] + k) { res++; } } } return res; } }
[sol2-C#]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
publicclassSolution { publicintFindPairs(int[] nums, int k) { Array.Sort(nums); int n = nums.Length, y = 0, res = 0; for (int x = 0; x < n; x++) { if (x == 0 || nums[x] != nums[x - 1]) { while (y < n && (nums[y] < nums[x] + k || y <= x)) { y++; } if (y < n && nums[y] == nums[x] + k) { res++; } } } return res; } }
[sol2-C++]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
classSolution { public: intfindPairs(vector<int>& nums, int k){ sort(nums.begin(), nums.end()); int n = nums.size(), y = 0, res = 0; for (int x = 0; x < n; x++) { if (x == 0 || nums[x] != nums[x - 1]) { while (y < n && (nums[y] < nums[x] + k || y <= x)) { y++; } if (y < n && nums[y] == nums[x] + k) { res++; } } } return res; } };
intfindPairs(int* nums, int numsSize, int k){ qsort(nums, numsSize, sizeof(int), cmp); int y = 0, res = 0; for (int x = 0; x < numsSize; x++) { if (x == 0 || nums[x] != nums[x - 1]) { while (y < numsSize && (nums[y] < nums[x] + k || y <= x)) { y++; } if (y < numsSize && nums[y] == nums[x] + k) { res++; } } } return res; }
[sol2-Golang]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
funcfindPairs(nums []int, k int) (ans int) { sort.Ints(nums) y, n := 0, len(nums) for x, num := range nums { if x == 0 || num != nums[x-1] { for y < n && (nums[y] < num+k || y <= x) { y++ } if y < n && nums[y] == num+k { ans++ } } } return }
[sol2-JavaScript]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
var findPairs = function(nums, k) { nums.sort((a, b) => a - b); let n = nums.length, y = 0, res = 0; for (let x = 0; x < n; x++) { if (x === 0 || nums[x] !== nums[x - 1]) { while (y < n && (nums[y] < nums[x] + k || y <= x)) { y++; } if (y < n && nums[y] === nums[x] + k) { res++; } } } return res; };
复杂度分析
时间复杂度:O(n\log n),其中 n 是数组 nums 的长度。排序需要消耗 O(n\log n) 复杂度,遍历指针 x 消耗 O(n) 复杂度,指针 y 的值最多变化 O(n) 次,总的时间复杂度为 O(n\log n)。