leetcode之Insert Delete GetRandom O(1) - Duplicates allowed

    xiaoxiao2025-04-04  2

    还是用的list来解决。

    import random class RandomizedCollection(object): def __init__(self): """ Initialize your data structure here. """ self.list1 = [] def insert(self, val): """ Inserts a value to the collection. Returns true if the collection did not already contain the specified element. :type val: int :rtype: bool """ if val in self.list1: self.list1.append(val) return False else: self.list1.append(val) return True def remove(self, val): """ Removes a value from the collection. Returns true if the collection contained the specified element. :type val: int :rtype: bool """ if val in self.list1: self.list1.remove(val) return True else: return False def getRandom(self): """ Get a random element from the collection. :rtype: int """ return random.choice(self.list1)

    不过看到了题目写的是O(1),感觉很多都是O(n)啊,不过不知道怎么才能O(1),倒是也给过了

    转载请注明原文地址: https://ju.6miu.com/read-1297703.html
    最新回复(0)