DIY: Insert, Delete, and GetRandom in O(1)

Solve the interview question "Insert, Delete, and GetRandom in O(1)" in this lesson.

Problem statement

Implement a set data structure that can perform the following operations:

  • insert(data): This function should insert data into the set (if the set does not contain it already). It should return false if the data already exists in the set. Otherwise, it should return true.
  • remove(data): If the data is present, this function should remove data from the set and return true. If the data does not exist in the set, the function should return false.
  • getRandomData(): This function should return a random element from the set in constant time.

Note: Your implementation should aim for constant running time (on average) for each operation.

Input

The inputs to the insert() and remove() functions will be integers. The getRandomData() function will have no input.

insert(20)
getRandomData()
remove(20)

Output

The outputs of the insert() and remove() functions will be Booleans. While the getRandomData() function will return an integer. The following is an example output that corresponds to the input given above:

true
20
true

Level up your interview prep. Join Educative to access 70+ hands-on prep courses.