[leetcode] 380. Insert Delete GetRandom O

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode] 380. Insert Delete GetRandom O相关的知识,希望对你有一定的参考价值。

Design a data structure that supports all following operations in average O(1) time.

 

  1. insert(val): Inserts an item val to the set if not already present.
  2. remove(val): Removes an item val from the set if present.
  3. getRandom: Returns a random element from current set of elements. Each element must have the same probability of being returned.

 

Example:

// Init an empty set.
RandomizedSet randomSet = new RandomizedSet();

// Inserts 1 to the set. Returns true as 1 was inserted successfully.
randomSet.insert(1);

// Returns false as 2 does not exist in the set.
randomSet.remove(2);

// Inserts 2 to the set, returns true. Set now contains [1,2].
randomSet.insert(2);

// getRandom should return either 1 or 2 randomly.
randomSet.getRandom();

// Removes 1 from the set, returns true. Set now contains [2].
randomSet.remove(1);

// 2 was already in the set, so return false.
randomSet.insert(2);

// Since 1 is the only number in the set, getRandom always return 1.
randomSet.getRandom();

 

 

Subscribe to see which companies asked this question

 

Solution:

 1 class RandomizedSet {
 2 public:
 3     /** Initialize your data structure here. */
 4     RandomizedSet() 
 5     {
 6     }
 7     
 8     /** Inserts a value to the set. Returns true if the set did not already contain the specified element. */
 9     bool insert(int val) 
10     {
11         if (hset.find(val) != hset.end()) // exist
12             return false;
13         hset.insert(val);
14         array.push_back(val);
15         return true;
16     }
17     
18     /** Removes a value from the set. Returns true if the set contained the specified element. */
19     bool remove(int val) 
20     {
21         if (hset.find(val) == hset.end()) // not exist
22             return false;
23         unordered_set<int>::iterator sit = hset.find(val);
24         hset.erase(sit);
25         
26         vector<int>::iterator vit = array.begin();
27         while (vit != array.end())
28         {
29             if (*vit == val) // erase it
30             {
31                 vit = array.erase(vit);
32             }
33             else
34             {
35                 vit++;
36             }
37         }
38         
39         return true;
40     }
41     
42     /** Get a random element from the set. */
43     int getRandom() 
44     {
45         return array[rand() % array.size()];
46     }
47     
48 private:
49     vector<int> array;
50     unordered_set<int> hset;
51 };

 

以上是关于[leetcode] 380. Insert Delete GetRandom O的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode] 380. Insert Delete GetRandom O

leetcode380- Insert Delete GetRandom O- medium

[leetcode]380. Insert Delete GetRandom O常数时间插入删除取随机值

LeetCode 380. Insert Delete GetRandom O (插入删除和获得随机数 常数时间)

[leetcode]380. Insert Delete GetRandom O设计数据结构,实现存,删,随机取的时间复杂度为O

380. Insert Delete GetRandom O