-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathProblem-1.java
124 lines (96 loc) · 2.59 KB
/
Problem-1.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/**
* @author AkashGoyal
* @date 25/05/2021
*/
/**
--------------------- Problem----------->> Union of two arrays
Problem Link :- https://practice.geeksforgeeks.org/problems/union-of-two-arrays3538/1
Concept:- We need to count All unique elements--> Use HashSet
*/
// Method-1 Using HashSet Data Structure
class Solution{
public static int doUnion(int a[], int n, int b[], int m)
{
//Your code here
HashSet<Integer> hs=new HashSet<Integer>();
for(int i=0;i<n;i++)
{
hs.add(a[i]);
}
for(int i=0;i<m;i++)
{
hs.add(b[i]);
}
return hs.size();
}
}
---------------------------------------------------------------------------------------------------------------------------------
// Method-2 Without using additional Data Structure
class Solution{
public static int doUnion(int a[], int n, int b[], int m)
{
Arrays.sort(a);
Arrays.sort(b);
int current_value=Integer.MIN_VALUE;
int union_count=0;// to contain count
int i=0;
int j=0;
while(i<n && j<m)
{
if(current_value<a[i] && current_value<b[j])
{
if(a[i]<b[j]){
current_value=a[i];
i++;
union_count++;
}
else if(a[i]>b[j])
{
current_value=b[j];
j++;
union_count++;
}
else {
current_value=a[i];
i++;
j++;
union_count++;
}
}
else if(current_value==a[i])
{
i++;
}
else if(current_value==b[j])
{
j++;
}
}
while(i<n)
{
if(current_value<a[i])
{
current_value=a[i];
i++;
union_count++;
}
else //a[i]=current_value
{
i++;
}
}
while(j<m)
{
if(current_value<b[j])
{
current_value=b[j];
j++;
union_count++;
}
else{ //b[j]= current_value
j++;
}
}
return union_count;
}
}