leetcode Insert Delete GetRandom O(1) - Duplicates allowed
Design a data structure that supports all following operations in average O(1) time.
Note: Duplicate elements are allowed.
insert(val)
: Inserts an item val to the collection.remove(val)
: Removes an item val from the collection if present.getRandom
: Returns a random element from current collection of elements. The probability of each element being returned is linearly related to the number of same value the collection contains.Example:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 // Init an empty collection.
RandomizedCollection collection = new RandomizedCollection();
// Inserts 1 to the collection. Returns true as the collection did not contain 1.
collection.insert(1);
// Inserts another 1 to the collection. Returns false as the collection contained 1. Collection now contains [1,1].
collection.insert(1);
// Inserts 2 to the collection, returns true. Collection now contains [1,1,2].
collection.insert(2);
// getRandom should return 1 with the probability 2/3, and returns 2 with the probability 1/3.
collection.getRandom();
// Removes 1 from the collection, returns true. Collection now contains [1,2].
collection.remove(1);
// getRandom should return 1 and 2 both equally likely.
collection.getRandom();
题目地址:leetcode Insert Delete GetRandom O(1) - Duplicates allowed
题目大意: 要求实现一个数据结构(数允许重复),可以支持插入,删除,随机数生成。 他们的复杂度均要求O(1)
思路:其实和上一题 leetcode Insert Delete GetRandom O(1) 差不多,只不过这题允许重复,把字典里换成一个哈希表的set即可(注意,不可以是list)
比如如下的数据,list无法保证顺序!特别感谢@guanglightman 指出
1
2 ["RandomizedCollection", "insert", "insert", "insert", "insert", "insert", "insert", "insert", "insert","remove", "remove", "remove", "remove", "remove", "remove"]
[[], [3], [4], [5], [6], [1], [2], [1], [2], [3], [4], [5], [6], [2], [2]]
C++
1 | class RandomizedCollection { |
Python
1 | import random |
本题是leetcode 381 Insert Delete GetRandom O(1) - Duplicates allowed 的题解
更多题解可以查看:https://www.hrwhisper.me/leetcode-algorithm-solution/