美文网首页北美程序员面试干货
LeetCode 350 [Intersection of Tw

LeetCode 350 [Intersection of Tw

作者: Jason_Yuan | 来源:发表于2016-06-18 17:22 被阅读24次

原题

计算两个数组的交
注意事项
每个元素出现次数得和在数组里一样答案可以以任意顺序给出

样例
nums1 = [1, 2, 2, 1], nums2 = [2, 2], 返回 [2, 2].

解题思路

  • 遍历第一个数组,构建hash map,计数
  • 遍历第二个数组,如果存在在hash map而且个数大于零,加入res数组
  • 其他方法:先排序,两根指针

完整代码

class Solution(object):
    def intersect(self, nums1, nums2):
        """
        :type nums1: List[int]
        :type nums2: List[int]
        :rtype: List[int]
        """
        map = {}
        for x in nums1:
            if x not in map:
                map[x] = 1
            else:
                map[x] += 1
            
        res = []
        for y in nums2:
            if y in map and map[y] > 0:
                res.append(y)
                map[y] -= 1
            
        return res

相关文章

网友评论

    本文标题:LeetCode 350 [Intersection of Tw

    本文链接:https://www.haomeiwen.com/subject/dvfbdttx.html