数据结构和算法LeetCode,初级算法-6两个数组的交集 II

Posted 数据结构和算法

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据结构和算法LeetCode,初级算法-6两个数组的交集 II相关的知识,希望对你有一定的参考价值。

截止到目前我已经写了 600多道算法题,其中部分已经整理成了pdf文档,目前总共有1000多页(并且还会不断的增加),大家可以免费下载
下载链接https://pan.baidu.com/s/1hjwK0ZeRxYGB8lIkbKuQgQ
提取码:6666

视频分析

LeetCode,初级算法-两个数组的交集 II

B站视频合集:https://www.bilibili.com/video/BV11F411G7UW


代码部分

解法一

public int[] intersect(int[] nums1, int[] nums2) 
    // 先对两个数组进行排序
    Arrays.sort(nums1);
    Arrays.sort(nums2);
    int i = 0;
    int j = 0;
    List<Integer> list = new ArrayList<>();
    while (i < nums1.length && j < nums2.length) 
        if (nums1[i] < nums2[j]) 
            // 如果i指向的值小于j指向的值,,说明i指向
            // 的值小了,i往后移一步
            i++;
         else if (nums1[i] > nums2[j]) 
            // 如果i指向的值大于j指向的值,说明j指向的值
            // 小了,j往后移一步
            j++;
         else 
            // 如果i和j指向的值相同,说明这两个值是重复的,
            // 把他加入到集合list中,然后i和j同时都往后移一步
            list.add(nums1[i]);
            i++;
            j++;
        
    
    //把list转化为数组
    int index = 0;
    int[] res = new int[list.size()];
    for (int k = 0; k < list.size(); k++) 
        res[index++] = list.get(k);
    
    return res;

解法二

public int[] intersect(int[] nums1, int[] nums2) 
    HashMap<Integer, Integer> map = new HashMap<>();
    ArrayList<Integer> list = new ArrayList<>();

    //先把数组nums1的所有元素都存放到map中,其中key是数组中
    //的元素,value是这个元素出现在数组中的次数
    for (int i = 0; i < nums1.length; i++) 
        map.put(nums1[i], map.getOrDefault(nums1[i], 0) + 1);
    

    //然后再遍历nums2数组,查看map中是否包含nums2的元素,如果包含,
    //就把当前值加入到集合list中,然后再把对应的value值减1。
    for (int i = 0; i < nums2.length; i++) 
        if (map.getOrDefault(nums2[i], 0) > 0) 
            list.add(nums2[i]);
            map.put(nums2[i], map.get(nums2[i]) - 1);
        
    

    //把集合list转化为数组
    int[] res = new int[list.size()];
    for (int i = 0; i < list.size(); i++) 
        res[i] = list.get(i);
    
    return res;

以上是关于数据结构和算法LeetCode,初级算法-6两个数组的交集 II的主要内容,如果未能解决你的问题,请参考以下文章

数据结构和算法LeetCode,初级算法-9两数之和

数据结构和算法LeetCode,初级算法-9两数之和

数据结构和算法LeetCode,初级算法-9两数之和

<LeetCode天梯>Day027 合并两个有序链表(递归法+改进递归) | 初级算法 | Python

数据结构和算法LeetCode,初级算法-13整数反转

leetcode官方《初级算法》题集(一)数组