-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path380-insert-delete-getrandom.java
51 lines (42 loc) · 1.24 KB
/
380-insert-delete-getrandom.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
import java.util.*;
class RandomizedSet {
ArrayList<Integer> a;
Random random;
public RandomizedSet() {
a = new ArrayList<>();
random = new Random();
}
public boolean insert(int val) {
if (a.contains(val)) {
return false;
}
a.add(val);
return true;
}
public boolean remove(int val) {
int index = a.indexOf(val);
if (index == -1) {
return false;
}
int lastValue = a.get(a.size() - 1);
a.set(index, lastValue);
a.remove(a.size() - 1);
return true;
}
public int getRandom() {
int randomIndex = random.nextInt(a.size()); //
return a.get(randomIndex);
}
}
class Main {
public static void main(String[] args) {
RandomizedSet randomizedSet = new RandomizedSet();
System.out.println(randomizedSet.insert(1));
System.out.println(randomizedSet.remove(2));
System.out.println(randomizedSet.insert(2));
System.out.println(randomizedSet.getRandom());
System.out.println(randomizedSet.remove(1));
System.out.println(randomizedSet.insert(2));
System.out.println(randomizedSet.getRandom());
}
}