博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] 380. Insert Delete GetRandom O(1)
阅读量:6704 次
发布时间:2019-06-25

本文共 2018 字,大约阅读时间需要 6 分钟。

Problem

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();

Solution

class RandomizedSet {    Map
map; List
list; public RandomizedSet() { map = new HashMap<>(); list = new ArrayList<>(); } public boolean insert(int val) { if (map.containsKey(val)) return false; list.add(val); map.put(val, list.size()-1); return true; } public boolean remove(int val) { int index = map.getOrDefault(val, -1); if (index == -1) return false; //swap val with the tail element in list Collections.swap(list, index, list.size()-1); //update the swapped tail element in map map.put(list.get(index), index); //remove val from the tail of list, remove val from map list.remove(list.size()-1); map.remove(val); return true; } public int getRandom() { int max = list.size(); int min = 0; int index = (int)(Math.random() * (max-min) + min); return list.get(index); }}

Allow Duplicates

LC381

转载地址:http://adblo.baihongyu.com/

你可能感兴趣的文章
修改防火墙
查看>>
thinkphp中取部分字段用法
查看>>
Linux系统虚拟机管理及redhat7.2的安装
查看>>
handsontable 和 echarts都定义了require方法,初始化时冲突了,怎么办?
查看>>
XP与XP互连
查看>>
ibatis对存储过程的调用
查看>>
接口与简单工厂模式
查看>>
linux驱动杂谈2
查看>>
使用linux内核,打造自己的linux
查看>>
xshell下常用的快捷键
查看>>
4、Ansible配置和使用
查看>>
Nginx--安装和配置
查看>>
网上邻居无法显示本地连接
查看>>
android:contentDescription的作用及使用方法
查看>>
在libvirt 中体验容器
查看>>
字符串类的重量级实现——Rope的初步了解
查看>>
数据库镜像和日志传送配合完成高可用性以及灾难恢复
查看>>
突破单位wifi限制
查看>>
Windows Server 2016 + Exchange 2016 +Office365混合部署(四)
查看>>
windows server 2008下载及序列号
查看>>