146. LRU 缓存

var LRUCache = function (capacity) {
this.capacity = capacity;
this.map = new Map();
};
LRUCache.prototype.get = function (key) {
if (this.map.has(key)) {
let value = this.map.get(key);
this.map.delete(key);
this.map.set(key, value);
return value;
}
return -1;
}; LRUCache.prototype.put = function (key, value) {
this.map.delete(key);
this.map.set(key, value);
if (this.map.size > this.capacity) {
this.map.delete(this.map.keys().next().value);
}
};

155. 最小栈

var MinStack = function () {
this.data = [];
}; MinStack.prototype.push = function (val) {
this.data.push(val);
};
MinStack.prototype.pop = function () {
this.data.pop();
};
MinStack.prototype.top = function () {
return this.data[this.data.length - 1];
};
MinStack.prototype.getMin = function () {
return Math.min(...this.data);
};

208. 实现 Trie (前缀树)

var Trie = function () {
this.data = {};
}; Trie.prototype.insert = function (word) {
this.data[word] = word;
}; Trie.prototype.search = function (word) {
return !!this.data[word];
}; Trie.prototype.startsWith = function (prefix) {
for (const key in this.data) {
if (this.data[key].startsWith(prefix)) {
return true;
}
}
return false;
};

211. 添加与搜索单词 - 数据结构设计

var WordDictionary = function () {
this.data = {};
}; WordDictionary.prototype.addWord = function (word) {
if (!this.data[word.length]) {
// 键为单词长度,值为同长度的单词集合
this.data[word.length] = [];
}
this.data[word.length].push(word);
}; WordDictionary.prototype.search = function (word) {
const len = word.length;
if (!this.data[len]) return false;
if (!word.includes(".")) return this.data[len].includes(word); // 普通字符串,直接从等长单词集合中查找即可 // 否则是正则表达式,先创建正则表达式对象
const reg = new RegExp(word);
return this.data[len].some((item) => reg.test(item));
};

284. 顶端迭代器

var PeekingIterator = function (iterator) {
this.data = [];
while (iterator.hasNext()) this.data.push(iterator.next());
this.index = 0;
this.size = this.data.length;
}; PeekingIterator.prototype.peek = function () {
return this.data[this.index];
}; PeekingIterator.prototype.next = function () {
return this.data[this.index++];
}; PeekingIterator.prototype.hasNext = function () {
return this.index < this.size;
};

304. 二维区域和检索 - 矩阵不可变

var NumMatrix = function (matrix) {
this.data = matrix;
}; NumMatrix.prototype.sumRegion = function (row1, col1, row2, col2) {
let sum = 0;
for (let i = row1; i <= row2; i++) {
for (let j = col1; j <= col2; j++) {
sum += this.data[i][j];
}
}
return sum;
};

307. 区域和检索 - 数组可修改

var NumArray = function (nums) {
this.data = nums;
};
NumArray.prototype.update = function (index, val) {
this.data[index] = val;
};
NumArray.prototype.sumRange = function (left, right) {
let sum = 0;
for (let i = left; i <= right; i++) {
sum += this.data[i];
}
return sum;
};

341. 扁平化嵌套列表迭代器

// 方法一:
var NestedIterator = function (nestedList) {
this.list = [];
this.traverse(nestedList);
};
NestedIterator.prototype.traverse = function (arr) {
for (let i = 0; i < arr.length; i++) {
if (arr[i].isInteger()) {
this.list.push(arr[i].getInteger()); // 是Integer
} else {
this.traverse(arr[i].getList()); // 是List,递归调用
}
}
};
NestedIterator.prototype.hasNext = function () {
return this.list.length > 0;
};
NestedIterator.prototype.next = function () {
return this.list.shift();
}; // 方法二:
var NestedIterator_1 = function (nestedList) {
this.list = nestedList
.toString()
.split(",")
.filter((val) => {
return val != "";
});
};
NestedIterator_1.prototype.toString = function () {
if (this.isInteger()) {
return this.getInteger() + "";
} else {
return this.getList().toString();
}
};
NestedIterator_1.prototype.hasNext = function () {
return this.list.length > 0;
};
NestedIterator_1.prototype.next = function () {
return this.list.shift();
};

355. 设计推特

var Twitter = function () {
this.tweets = {};
this.user = {};
this.time = 0;
};
Twitter.prototype.postTweet = function (userId, tweetId) {
if (!this.tweets[userId]) {
this.tweets[userId] = [];
}
this.tweets[userId].push({ tweetId, twitTime: this.time++ });
}; Twitter.prototype.getNewsFeed = function (userId) {
let followsId = Array.from(this.user[userId] || {});
followsId.push(userId);
const allTwitters = followsId
.reduce((prev, next) => prev.concat(this.tweets[next] || []), [])
.sort((a, b) => b.twitTime - a.twitTime)
.map((item) => item.tweetId);
return Array.from(new Set(allTwitters)).slice(0, 10);
}; Twitter.prototype.follow = function (followerId, followeeId) {
if (!this.user[followerId]) {
this.user[followerId] = new Set();
}
this.user[followerId].add(followeeId);
};
Twitter.prototype.unfollow = function (followerId, followeeId) {
if (this.user[followerId]) {
this.user[followerId].delete(followeeId);
}
};

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

var RandomizedSet = function () {
this.data = new Set();
}; RandomizedSet.prototype.insert = function (val) {
if (this.data.has(val)) {
return false;
} else {
this.data.add(val);
return true;
}
}; RandomizedSet.prototype.remove = function (val) {
return this.data.delete(val);
}; RandomizedSet.prototype.getRandom = function () {
let random = Math.floor(Math.random() * this.data.size);
return Array.from(this.data)[random];
};

leetcode 中等(设计):[146, 155, 208, 211, 284, 304, 307, 341, 355, 380]的更多相关文章

  1. 【LeetCode】设计题 design(共38题)

    链接:https://leetcode.com/tag/design/ [146]LRU Cache [155]Min Stack [170]Two Sum III - Data structure ...

  2. leetcode中等题

    # Title Solution Acceptance Difficulty Frequency     1 Two Sum       44.5% Easy     2 Add Two Number ...

  3. <Trie> 208 211

    208. Implement Trie (Prefix Tree) class TrieNode{ private char val; public boolean isWord; public Tr ...

  4. LeetCode No.145,146,147

    No.145 PostorderTraversal 二叉树的后序遍历 题目 给定一个二叉树,返回它的 后序 遍历. 进阶: 递归算法很简单,你可以通过迭代算法完成吗? 示例 输入: [1,null,2 ...

  5. LeetCode 中等题解(2)

    31 下一个排列 Question 实现获取下一个排列的函数,算法需要将给定数字序列重新排列成字典序中下一个更大的排列. 如果不存在下一个更大的排列,则将数字重新排列成最小的排列(即升序排列). 必须 ...

  6. leetcode 中等题(2)

    50. Pow(x, n) (中等) double myPow(double x, int n) { ; unsigned long long p; ) { p = -n; x = / x; } el ...

  7. leetcode 中等题(1)

    2. Add Two Numbers(中等) /** * Definition for singly-linked list. * struct ListNode { * int val; * Lis ...

  8. LeetCode 刷题笔记 155. 最小栈(Min Stack)

    tag: 栈(stack) 题目描述 设计一个支持 push,pop,top 操作,并能在常数时间内检索到最小元素的栈. push(x) -- 将元素 x 推入栈中. pop() -- 删除栈顶的元素 ...

  9. LeetCode 622——设计循环队列

    1. 题目 设计你的循环队列实现. 循环队列是一种线性数据结构,其操作表现基于 FIFO(先进先出)原则并且队尾被连接在队首之后以形成一个循环.它也被称为"环形缓冲器". 循环队列 ...

  10. 领扣(LeetCode)设计哈希映射 个人题解

    不使用任何内建的哈希表库设计一个哈希映射 具体地说,你的设计应该包含以下的功能 put(key, value):向哈希映射中插入(键,值)的数值对.如果键对应的值已经存在,更新这个值. get(key ...

随机推荐

  1. Linux安装ElastSearch

    Linux安装ES 准备好Linux系统,软件安装前需要对当前系统做一些优化配置 系统配置修改 一.内存优化 在/etc/sysctl.conf添加如下内容: fs.file-max=655360 系 ...

  2. 使用interface化解一场因操作系统不同导致的编译问题

    场景描述 起因: 因项目需求,需要编写一个agent, 需支持Linux和Windows操作系统. Agent里面有一个功能需要获取到服务器上所有已经被占用的端口. 实现方式:针对不同的操作系统,实现 ...

  3. mysql in不走索引可能的情况

    在MySQL 5.7.3以及之前的版本中,eq_range_index_dive_limit的默认值为10,之 后的版本默认值为200.所以如果大家采用的是5.7.3以及之前的版本的话,很容易采用索引 ...

  4. C# 在Excel中添加、应用或删除筛选器 (日期筛选、文本筛选、数字筛选)

    自动筛选器是 Excel 中的一个基本但极其有用的功能,它可以让你根据特定的条件来自动隐藏和显示你的数据.当有大量的数据需要处理时,这个功能可以帮你快速找到你需要的信息,从未更加有效地分析和处理相关数 ...

  5. FreeRTOS例程开发

    环境配置 下载官方源码 https://www.freertos.org/ 找到这个,他就是visual studio示例demo,我们主要在这个的基础上修改 下载visio studio https ...

  6. C#笔记 picturebox功能实现(滚动放大,拖动)

    代码链接 1. picturebox上的坐标与原图中坐标的转换 (1) 由于图片的长宽比例和picturebox的长宽比例不同,所以图片不想拉伸的话,左右或者上下会有留白.将picturebox的si ...

  7. 多项分布模拟及 Seaborn 可视化教程

    多项分布 简介 多项分布是二项分布的推广,它描述了在 n 次独立试验中,k 种不同事件分别出现次数的离散概率分布.与二项分布只能有两种结果(例如成功/失败)不同,多项分布可以有 k 种(k ≥ 2)及 ...

  8. python安装OCR识别库

    (1)安装过程 参考的这个博客:https://blog.csdn.net/lanxianghua/article/details/100516187?depth_1-utm_source=distr ...

  9. CF Round 881 (Div. 3)

    CF Round 881 (Div. 3) Div. 3 果然简单,虽然但是,我还是有 1 道题没有想出来. A.Sasha and Array Coloring 排序双指针向内即可. https:/ ...

  10. java小记-scanner

    不想打字也是我的罪过吗? 作业2: 老师的代码: 结果 我的代码看起来冗余: 想说的: 我的本意是以为scanner只能记录一个数,然后就想着输入两次就能算两个数了,但没想到人家只是让你输就完了.不要 ...