LeetCode 380. Insert Delete GetRandom O1

简介: 设计一个支持在平均 时间复杂度 O(1) 下,执行以下操作的数据结构。

v2-2776975b4be2f8d69c74a3891b47e455_1440w.jpg

Description



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


insert(val): Inserts an item val to the set if not already present.

remove(val): Removes an item val from the set if present.


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 2 is the only number in the set, getRandom always return 2.
randomSet.getRandom();


描述



设计一个支持在平均 时间复杂度 O(1) 下,执行以下操作的数据结构。


insert(val):当元素 val 不存在时,向集合中插入该项。

remove(val):元素 val 存在时,从集合中移除该项。

getRandom:随机返回现有集合中的一项。每个元素应该有相同的概率被返回。


示例 :


// 初始化一个空的集合。
RandomizedSet randomSet = new RandomizedSet();
// 向集合中插入 1 。返回 true 表示 1 被成功地插入。
randomSet.insert(1);
// 返回 false ,表示集合中不存在 2 。
randomSet.remove(2);
// 向集合中插入 2 。返回 true 。集合现在包含 [1,2] 。
randomSet.insert(2);
// getRandom 应随机返回 1 或 2 。
randomSet.getRandom();
// 从集合中移除 1 ,返回 true 。集合现在包含 [2] 。
randomSet.remove(1);
// 2 已在集合中,所以返回 false 。
randomSet.insert(2);
// 由于 2 是集合中唯一的数字,getRandom 总是返回 2 。
randomSet.getRandom();


来源:力扣(LeetCode)

链接:https://leetcode-cn.com/problems/insert-delete-getrandom-o1

著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。


思路



  • 使用字典和数组这两种结构。
  • 数组存储数值 val,字典中存储数值 val 和 val 在字典中的索引。
  • 插入操作:如果要插入的数 val 已经在字典中(此操作时间复杂度为 O(1)),直接返回;如果不在数组中,将 val 放入数组末尾,在字典中新增健值对,健为 val ,值为 val 在数组中的索引。
  • 删除操作:将要删除元素 val 和数组中的最后一个元素 num 交换位置;更新字典中 num 的值;删除数组的最后一个元素,删除字典中的 val 健值对;
  • 随机返回:使用 random 函数,随机返回数组中的一个元素


# -*- coding: utf-8 -*-
# @Author:             何睿
# @Create Date:        2019-07-27 13:59:36
# @Last Modified by:   何睿
# @Last Modified time: 2019-07-27 14:24:11
import random
class RandomizedSet:
    def __init__(self):
        """
        Initialize your data structure here.
        """
        self.index = dict()
        self.array = list()
    def insert(self, val: int) -> bool:
        """
        Inserts a value to the set. Returns true if the set did not already contain the specified element.
        """
        if val in self.index:
            return False
        self.index[val] = len(self.array)
        self.array.append(val)
        return True
    def remove(self, val: int) -> bool:
        """
        Removes a value from the set. Returns true if the set contained the specified element.
        """
        if val not in self.index:
            return False
        last_num = self.array[-1]
        val_index = self.index[val]
        self.index[val], self.index[last_num] = self.index[last_num], self.index[val]
        self.array[val_index] = self.array[-1]
        del self.index[val]
        del self.array[-1]
        return True
    def getRandom(self) -> int:
        """
        Get a random element from the set.
        """
        return random.choice(self.array)

源代码文件在 这里,


目录
相关文章
LeetCode 237. 删除链表中的节点 Delete Node in a Linked List
LeetCode 237. 删除链表中的节点 Delete Node in a Linked List
|
存储 索引
LeetCode 381. Insert Delete GetRandom O1 Dallowed
设计一个支持在平均 时间复杂度 O(1) 下, 执行以下操作的数据结构。
78 0
LeetCode 381. Insert Delete GetRandom O1 Dallowed
【LeetCode-Database196】删除重复的电子邮箱(delete)
2.思路 DELETE p1就表示从p1表中删除满足WHERE条件的记录。
195 0
【LeetCode-Database196】删除重复的电子邮箱(delete)
LeetCode之Search Insert Position
LeetCode之Search Insert Position
97 0
|
存储 算法 Java
LeetCode 380: 常数时间插入、删除和获取随机元素 Insert Delete GetRandom O(1)
题目: 设计一个支持在平均 时间复杂度 O(1) 下,执行以下操作的数据结构。 insert(val):当元素 val 不存在时,向集合中插入该项。 remove(val):元素 val 存在时,从集合中移除该项。
1073 0
|
2月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
3月前
|
Python
【Leetcode刷题Python】剑指 Offer 32 - III. 从上到下打印二叉树 III
本文介绍了两种Python实现方法,用于按照之字形顺序打印二叉树的层次遍历结果,实现了在奇数层正序、偶数层反序打印节点的功能。
56 6
|
3月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
113 2
|
18天前
|
机器学习/深度学习 人工智能 自然语言处理
280页PDF,全方位评估OpenAI o1,Leetcode刷题准确率竟这么高
【10月更文挑战第24天】近年来,OpenAI的o1模型在大型语言模型(LLMs)中脱颖而出,展现出卓越的推理能力和知识整合能力。基于Transformer架构,o1模型采用了链式思维和强化学习等先进技术,显著提升了其在编程竞赛、医学影像报告生成、数学问题解决、自然语言推理和芯片设计等领域的表现。本文将全面评估o1模型的性能及其对AI研究和应用的潜在影响。
16 1
|
2月前
|
数据采集 负载均衡 安全
LeetCode刷题 多线程编程九则 | 1188. 设计有限阻塞队列 1242. 多线程网页爬虫 1279. 红绿灯路口
本文提供了多个多线程编程问题的解决方案,包括设计有限阻塞队列、多线程网页爬虫、红绿灯路口等,每个问题都给出了至少一种实现方法,涵盖了互斥锁、条件变量、信号量等线程同步机制的使用。
LeetCode刷题 多线程编程九则 | 1188. 设计有限阻塞队列 1242. 多线程网页爬虫 1279. 红绿灯路口