350. 两个数组的交集 II

题目

给你两个整数数组 nums1nums2 ,请你以数组形式返回两数组的交集。返回结果中每个元素出现的次数,应与元素在两个数组中都出现的次数一致(如果出现次数不一致,则考虑取较小值)。可以不考虑输出结果的顺序。

示例1:

1
2
输入: nums1 = [1,2,2,1], nums2 = [2,2]
输出: [2,2]

示例2:

1
2
输入: nums1 = [4,9,5], nums2 = [9,4,9,8,4]
输出: [4,9]

提示:

  • 1 <= nums1.length, nums2.length <= 1000
  • 0 <= nums1[i], nums2[i] <= 1000

进阶:

  • 如果给定的数组已经排好序呢?你将如何优化你的算法?
  • 如果 nums1 的大小比 nums2 小很多,哪种方法更优?
  • 如果 nums2 的元素存储在磁盘上,磁盘内存是有限的,并且你不能一次加载所有的元素到内存中,你该怎么办?

解法

解法一:

和349不同,这边不需要使用HashSet,替换成ArrayList即可。

使用ArrayList把两个数组相同的元素全部保存起来,返回即可。

Java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
class Solution {
public int[] intersect(int[] nums1, int[] nums2) {
Arrays.sort(nums1);
Arrays.sort(nums2);

int length1 = 0;
int length2 = 0;

ArrayList<Integer> result = new ArrayList<>();

while (length1 < nums1.length && length2 < nums2.length) {
if (nums1[length1] == nums2[length2]) {
result.add(nums1[length1]);
length1++;
length2++;
} else if (nums1[length1] < nums2[length2]) {
length1++;
} else {
length2++;
}
}

int array[] = new int[result.size()];
for (int i = 0;i < result.size();i++) {
array[i] = result.get(i);
}
return array;
}
}
0%