zoukankan      html  css  js  c++  java
  • LeetCode_350.两个数组的交集 II

    给定两个数组,编写一个函数来计算它们的交集。

    示例 1:

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

    示例 2:

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

    说明:

    • 输出结果中每个元素出现的次数,应与元素在两个数组中出现次数的最小值一致。
    • 我们可以不考虑输出结果的顺序。

    进阶

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

    C#代码

    public class Solution {
        public int[] Intersect(int[] nums1, int[] nums2) {
            Dictionary<int, int> dic = new Dictionary<int, int>();
            foreach (var item in nums1)
            {
                int num;
                if (dic.TryGetValue(item, out num))
                {
                    dic.Remove(item);
                    num += 1;
                }
                else
                {
                    num = 1;
                }
                dic.Add(item, num);
            }
    
            List<int> list = new List<int>();
            foreach (var item in nums2)
            {
                if (dic.TryGetValue(item, out int num))
                {
                    list.Add(item);
                    dic.Remove(item);
                    if (num > 1)
                    {
                        dic.Add(item, num - 1);
                    }
                }
            }
    
            int[] array = list.ToArray();
            return array;
        }
    }
    
  • 相关阅读:
    RabbitMQ 路由选择 (Routing)
    RabbitMQ 发布/订阅
    RabbitMQ 工作队列
    MySQL中的insert ignore into, replace into等的一些用法总结
    BigDecimal用法详解
    RabbitMQ 入门 Helloworld
    git标签
    git查看提交历史
    RabbitMQ简介
    【计算机视觉】SeetaFace Engine开源C++人脸识别引擎
  • 原文地址:https://www.cnblogs.com/fuxuyang/p/14244638.html
Copyright © 2011-2022 走看看