-
Notifications
You must be signed in to change notification settings - Fork 0
/
Intersection of Two Arrays II.java
56 lines (53 loc) · 1.44 KB
/
Intersection of Two Arrays II.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// class Solution {
// public int[] intersect(int[] nums1, int[] nums2) {
// Arrays.sort(nums1);
// Arrays.sort(nums2);
// int i=0,j=0,k=0;
// while( i < nums1.length && j < nums2.length)
// {
// if(nums1[i] < nums2[j])
// {
// i++;
// }
// else if(nums1[i] > nums2[j])
// {
// j++;
// }
// else
// { //equal
// nums1[k] = nums1[i];
// i++;
// j++;
// k++;
// }
// }
// return Arrays.copyOfRange(nums1,0,k);
// }
// }
class Solution {
public int[] intersect(int[] nums1, int[] nums2) {
Arrays.sort(nums1);
Arrays.sort(nums2);
int i=0,j=0,k=0;
for(; i < nums1.length && j < nums2.length;)
{
if(nums1[i] < nums2[j])
{
i++;
}
else if(nums1[i] > nums2[j])
{
j++;
}
else
{ //equal
nums1[k] = nums1[i];
i++;
j++;
k++;
}
}
// the common elements are stored at the beginning of nums1 from index 0 to k-1. The Arrays.copyOfRange method creates a new array containing these elements
return Arrays.copyOfRange(nums1,0,k);
}
}