码迷,mamicode.com
首页 > 其他好文 > 详细

[leetcode349]Intersection of Two Arrays

时间:2018-01-21 17:35:17      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:new   hashset   array   res   ret   section   hash   set   gpo   

设计的很烂的一道题

 List<Integer> res = new ArrayList<>();
//        int l1 = nums1.length;
//        int l2 = nums2.length;
//        int l = 0;
//        while (l<l1&&l<l2)
//        {
//            if (nums1[l]==nums2[l])
//                res.add(nums1[l]);
//            l++;
//        }
//        int[] nums = new int[res.size()];
//        for (int i = 0; i < nums.length; i++) {
//            nums[i] = res.get(i);
//        }
//        return nums;
        Set<Integer> set = new HashSet<>();
        for (int a :
                nums1) {
            set.add(a);
        }
        for (int i = 0; i < nums2.length; i++) {
            if (set.contains(nums2[i]))
                res.add(nums2[i]);
        }
        set = new HashSet<>(res);
        int[] nums = new int[set.size()];
        int i =0;
        for (int a :
                set) {
            nums[i] = a;
            i++;
        }
        return nums;

 

[leetcode349]Intersection of Two Arrays

标签:new   hashset   array   res   ret   section   hash   set   gpo   

原文地址:https://www.cnblogs.com/stAr-1/p/8324513.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!