当前位置:   article > 正文

取两个数组的交集_两个数组取交集

两个数组取交集

题目

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

思路解析:

由于同一个数字在两个数组中都可能出现多次,因此需要用哈希表存储每个数字出现的次数。对于一个数字,其在交集中出现的次数等于该数字在两个数组中出现次数的最小值。

首先遍历第一个数组,并在哈希表中记录第一个数组中的每个数字以及对应出现的次数,然后遍历第二个数组,对于第二个数组中的每个数字,如果在哈希表中存在这个数字,则将该数字添加到答案,并减少哈希表中该数字出现的次数。

为了降低空间复杂度,首先遍历较短的数组并在哈希表中记录每个数字以及对应出现的次数,然后遍历较长的数组得到交集。

  1. public int[] intersect(int[] nums1, int[] nums2) {
  2. if (nums1.length > nums2.length) {
  3. return intersect(nums2, nums1);
  4. }
  5. Map<Integer, Integer> map = new HashMap<Integer, Integer>();
  6. for (int num : nums1) {
  7. int count = map.getOrDefault(num, 0) + 1;
  8. map.put(num, count);
  9. }
  10. int[] intersection = new int[nums1.length];
  11. int index = 0;
  12. for (int num : nums2) {
  13. int count = map.getOrDefault(num, 0);
  14. if (count > 0) {
  15. intersection[index++] = num;
  16. count--;
  17. if (count > 0) {
  18. map.put(num, count);
  19. } else {
  20. map.remove(num);
  21. }
  22. }
  23. }
  24. return Arrays.copyOfRange(intersection, 0, index);
  25. }

还有一种更容易理解的方法,先把数组排序,然后进行比较,把所求答案放入list

  1. public int[] intersect(int[] nums1, int[] nums2) {
  2. Arrays.sort(nums1);
  3. Arrays.sort(nums2);
  4. List<Integer> list = new ArrayList<>();
  5. for (int i = 0, j = 0; i < nums1.length && j < nums2.length; ) {
  6. if (nums1[i] < nums2[j]) {
  7. i++;
  8. } else if (nums1[i] > nums2[j]) {
  9. j++;
  10. } else {
  11. list.add(nums1[i]);
  12. i++;
  13. j++;
  14. }
  15. }
  16. int[] res = new int[list.size()];
  17. for (int i = 0; i < list.size(); i++) {
  18. res[i] = list.get(i);
  19. }
  20. return res;
  21. }
  22. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/487708
推荐阅读
相关标签
  

闽ICP备14008679号