程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 349. Intersection of Two Arrays,intersectionarrays

349. Intersection of Two Arrays,intersectionarrays

編輯:JAVA綜合教程

349. Intersection of Two Arrays,intersectionarrays


Given two arrays, write a function to compute their intersection.

Example:
Given nums1 = [1, 2, 2, 1]nums2 = [2, 2], return [2].

Note:

    • Each element in the result must be unique.
    • The result can be in any order.

代碼如下:

 1 public class Solution {
 2     public int[] intersection(int[] nums1, int[] nums2) {
 3         ArrayList<Integer> list=new ArrayList<>();
 4 
 5         for(int i=0;i<nums1.length;i++)
 6         {
 7             for(int j=0;j<nums2.length;j++)
 8             {
 9             if(nums1[i]==nums2[j])
10             {
11                 if(!list.contains(nums1[i]))
12                 list.add(nums1[i]);
13             }
14             }
15         }
16         int[] result=new int[list.size()];
17         for(int i=0;i<list.size();i++)
18         result[i]=list.get(i);
19         return result;
20     }
21 }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved