Leetcode 350. Intersection of Two Arrays II JAVA語言

來源:互聯網
上載者:User

標籤:數組的交集

Given two arrays, write a function to compute their intersection.Example:Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2, 2].Note:Each element in the result should appear as many times as it shows in both arrays.The result can be in any order.

題意:求兩個數組的交集,每個元素可以出現多次,返回的數組順序隨意。

public class Solution {    public int[] intersect(int[] nums1, int[] nums2) {        List<Integer> list=new ArrayList<Integer>();        int length1=nums1.length;        int length2=nums2.length;        int[] ret=new int[Math.min(length1,length2)];        int index=0;        HashMap<Integer,Integer> map=new HashMap<Integer,Integer>();        for(int i=0;i<length1;i++){            if(!map.containsKey(nums1[i])){                map.put(nums1[i],1);            }else{                map.put(nums1[i],map.get(nums1[i])+1);            }        }        for(int i=0;i<length2;i++){            if(map.containsKey(nums2[i]) && map.get(nums2[i])!=0){                map.put(nums2[i],map.get(nums2[i])-1);                ret[index++]=nums2[i];            }        }        return Arrays.copyOfRange(ret,0,index);            }}

PS:

1、先申請一個長度是較小長度的數組的數組。

2、用hashmap存放第一個數組的各個數字出現的次數。

3、遍曆第二個數組,去hashmap中找,如出現,則hashmap對應的次數減1,同時將key加入到數組中。

4、最後取部分返回。。。

Leetcode 350. Intersection of Two Arrays II JAVA語言

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.