-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Time: 413 ms (14.83%), Space: 96.9 MB (83.21%) - LeetHub
- Loading branch information
1 parent
7a8c531
commit 209d1ab
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
class RandomizedSet { | ||
public: | ||
unordered_set<int> s; | ||
RandomizedSet() { | ||
s.clear(); | ||
} | ||
|
||
bool insert(int val) { | ||
if(s.count(val)) | ||
return false; | ||
s.insert(val); | ||
return true; | ||
} | ||
|
||
bool remove(int val) { | ||
if(s.count(val)) { | ||
s.erase(val); | ||
return true; | ||
} | ||
return false; | ||
} | ||
|
||
int getRandom() { | ||
int n = s.size(); | ||
int randNo = rand()%n; | ||
auto itr = s.begin(); | ||
advance(itr, randNo); | ||
return *itr; | ||
} | ||
}; | ||
|
||
/** | ||
* Your RandomizedSet object will be instantiated and called as such: | ||
* RandomizedSet* obj = new RandomizedSet(); | ||
* bool param_1 = obj->insert(val); | ||
* bool param_2 = obj->remove(val); | ||
* int param_3 = obj->getRandom(); | ||
*/ |