当前位置: 首页 > article >正文

数据结构与算法之数组: LeetCode 380. O(1) 时间插入、删除和获取随机元素 (Ts版)

O(1) 时间插入、删除和获取随机元素

  • https://leetcode.cn/problems/insert-delete-getrandom-o1/description/

描述

  • 实现RandomizedSet 类:
    • RandomizedSet() 初始化 RandomizedSet 对象
    • bool insert(int val) 当元素 val 不存在时,向集合中插入该项,并返回 true ;否则,返回 false
    • bool remove(int val) 当元素 val 存在时,从集合中移除该项,并返回 true ;否则,返回 false
    • int getRandom() 随机返回现有集合中的一项(测试用例保证调用此方法时集合中至少存在一个元素)。每个元素应该有 相同的概率 被返回
  • 你必须实现类的所有函数,并满足每个函数的 平均 时间复杂度为 O(1)

示例

输入
["RandomizedSet", "insert", "remove", "insert", "getRandom", "remove", "insert", "getRandom"]
[[], [1], [2], [2], [], [1], [2], []]
输出
[null, true, false, true, 2, true, false, 2]

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

提示

  • − 2 31 -2^{31} 231 <= val <= 2 31 2^{31} 231 - 1
  • 最多调用 insert、remove 和 getRandom 函数 2 * 1 0 5 10^5 105
  • 在调用 getRandom 方法时,数据结构中 至少存在一个 元素

Typescript 版算法实现


1 ) 方案1:变长数组 + 哈希表

class RandomizedSet {
    nums: number[]
    indices: Map<number, number>
    constructor() {
        this.nums = [];
        this.indices = new Map();
    }

    insert(val: number): boolean {
        if (this.indices.has(val)) {
            return false;
        }
        let index = this.nums.length;
        this.nums.push(val);
        this.indices.set(val, index);
        return true;

    }

    remove(val: number): boolean {
        if (!this.indices.has(val)) {
            return false;
        }
        let id = this.indices.get(val);
        this.nums[id] = this.nums[this.nums.length - 1];
        this.indices.set(this.nums[id], id);
        this.nums.pop();
        this.indices.delete(val);
        return true;
    }

    getRandom(): number {
        const randomIndex = Math.floor(Math.random() * this.nums.length);
        return this.nums[randomIndex];

    }
}

/**
 * Your RandomizedSet object will be instantiated and called as such:
 * var obj = new RandomizedSet()
 * var param_1 = obj.insert(val)
 * var param_2 = obj.remove(val)
 * var param_3 = obj.getRandom()
 */

http://www.kler.cn/a/522796.html

相关文章:

  • 3、C#基于.net framework的应用开发实战编程 - 实现(三、三) - 编程手把手系列文章...
  • Qt Ribbon使用实例
  • 【深度学习】 UNet详解
  • NPM 使用介绍
  • python学opencv|读取图像(四十九)使用cv2.bitwise()系列函数实现图像按位运算
  • 蓝桥杯例题四
  • TS开发的类型索引目录
  • kubernetes 核心技术-调度器
  • 公式与函数的应用
  • 【前端SEO】使用Vue.js + Nuxt 框架构建服务端渲染 (SSR) 应用满足SEO需求
  • 基于 PyTorch 的深度学习模型开发实战
  • 搭建 docxify 静态博客教程
  • 13、Java JDBC 编程:连接数据库的桥梁
  • Java并发编程实战:深入探索线程池与Executor框架
  • WordPress Web Directory Free插件本地包含漏洞复现(附脚本)(CVE-2024-3673)
  • 更换keil工程芯片到103c8t6(HAL库版本)
  • 豆包MarsCode:字符串字符类型排序问题
  • JS宏进阶:控件与事件
  • java:read weather info from openweathermap.org
  • 书生大模型实战营2
  • Semaphore 与 线程池 Executor 有什么区别?
  • 嵌入式知识点总结 Linux驱动 (三)-文件系统
  • Linux 35.6 + JetPack v5.1.4之编译器升级
  • 在Rust应用中访问.ini格式的配置文件
  • vim如何解决‘’文件非法关闭后,遗留交换文件‘’的问题
  • 第3章 基于三电平空间矢量的中点电位平衡策略