初級算法-6.兩個數組的交集 II
阿新 • • 發佈:2019-04-24
div color intersect else 示例 inter amp nbsp 函數
題目描述:
給定兩個數組,編寫一個函數來計算它們的交集。
示例 1: 輸入: nums1 = [1,2,2,1], nums2 = [2,2] 輸出: [2,2] 示例 2: 輸入: nums1 = [4,9,5], nums2 = [9,4,9,8,4] 輸出: [4,9]
分析:先對兩個數組進行排序,然後按順序查找
1 class Solution { 2 public int[] intersect(int[] nums1, int[] nums2) { 3 Arrays.sort(nums1); 4 Arrays.sort(nums2);5 int[] t=null; 6 if(nums1.length<=nums2.length){ 7 t=new int[nums1.length]; 8 } 9 else 10 t=new int[nums2.length]; 11 int i=0,j=0,index=0; 12 while(i<nums1.length&&j<nums2.length){ 13 if(nums1[i]<nums2[j])14 i++; 15 else{ 16 if(nums1[i]>nums2[j]) 17 j++; 18 else{ 19 t[index++]=nums1[i]; 20 i++;j++; 21 } 22 } 23 } 24 return Arrays.copyOf(t,index);25 } 26 }
初級算法-6.兩個數組的交集 II