forked from xiaoyaoworm/Leetcode-java
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path381_RandomizedCollection.java
71 lines (64 loc) · 2.22 KB
/
381_RandomizedCollection.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
public class RandomizedCollection {
int count;
HashMap<Integer, HashSet<Integer>> numPos;
ArrayList<Integer> nums;
Random random;
/** Initialize your data structure here. */
public RandomizedCollection() {
this.count = 0;
this.numPos = new HashMap<Integer, HashSet<Integer>>();
this.nums = new ArrayList<Integer>();
random = new Random();
}
/** Inserts a value to the collection. Returns true if the collection did not already contain the specified element. */
public boolean insert(int val) {
boolean res = false;
HashSet<Integer> set = null;
if(numPos.containsKey(val)){
set = numPos.get(val);
} else{
set = new HashSet<Integer>();
res = true;
}
set.add(count);
numPos.put(val, set);
nums.add(val);
count++;
return res;
}
/** Removes a value from the collection. Returns true if the collection contained the specified element. */
public boolean remove(int val) {
boolean res = false;
if(numPos.containsKey(val)) {
res = true;
HashSet set = numPos.get(val);
Iterator<Integer> iterator = set.iterator();
int index = iterator.next();
set.remove(index);
if(set.size()!=0) numPos.put(val, set);
else numPos.remove(val);
int last = nums.get(count-1);
nums.set(index, last);
HashSet lastSet = numPos.get(last);
if(lastSet!=null){ //update last value's set, be careful it maybe null! because we remove some val above.
lastSet.add(index);
lastSet.remove(count-1);
}
nums.remove(count-1);
count--;
}
return res;
}
/** Get a random element from the collection. */
public int getRandom() {
int index = random.nextInt(count);
return nums.get(index);
}
}
/**
* Your RandomizedCollection object will be instantiated and called as such:
* RandomizedCollection obj = new RandomizedCollection();
* boolean param_1 = obj.insert(val);
* boolean param_2 = obj.remove(val);
* int param_3 = obj.getRandom();
*/