-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRandomizedSet.cpp
49 lines (37 loc) · 1.05 KB
/
RandomizedSet.cpp
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
#include<iostream>
#include<unordered_map>
#include<vector>
using namespace std;
class RandomizedSet {
public:
RandomizedSet() {
srand((unsigned)time(NULL));
}
bool insert(int val) {
if(_hashMap.find(val) != _hashMap.end()){
return false;
}
_container.emplace_back(val);
_hashMap.insert(make_pair(val, _container.size() - 1));
return true;
}
bool remove(int val) {
if(_hashMap.find(val) == _hashMap.end())
return false;
int location = _hashMap.find(val)->second;
_hashMap.erase(val);
if(location != _container.size() - 1){
_container[location] = _container.back();
_hashMap[_container[location]] = location;
}
_container.pop_back();
return true;
}
int getRandom() {
int Random = rand() % _container.size();
return _container[Random];
}
private:
unordered_map<int, int> _hashMap;
vector<int> _container;
};