题目名称

有 n 个 (id, value) 对,其中 id 是 1 到 n 之间的一个整数,value 是一个字符串。不存在 id 相同的两个 (id, value) 对。

设计一个流,以 任意 顺序获取 n 个 (id, value) 对,并在多次调用时 按 id 递增的顺序 返回一些值。

实现 OrderedStream 类:

OrderedStream(int n) 构造一个能接收 n 个值的流,并将当前指针 ptr 设为 1 。

String[] insert(int id, String value) 向流中存储新的 (id, value) 对。存储后:

如果流存储有 id = ptr 的 (id, value) 对,则找出从 id = ptr 开始的 最长 id 连续递增序列 ,并 按顺序 返回与这些 id 关联的值的列表。然后,将 ptr 更新为最后那个 id + 1 。
否则,返回一个空列表。

示例图
图片

示例

输入
[“OrderedStream”, “insert”, “insert”, “insert”, “insert”, “insert”]
[[5], [3, “ccccc”], [1, “aaaaa”], [2, “bbbbb”], [5, “eeeee”], [4, “ddddd”]]

输出
[null, [], [“aaaaa”], [“bbbbb”, “ccccc”], [], [“ddddd”, “eeeee”]]

题解

这道题主要是还是看图,观看题解不太容易看懂

首先根据示例

第一步:输入 [3, “ccccc”],这个时候首先将这个输入内容根据id 添加到流存储中
[empty, empty, "ccccc", empty, empty],这个时候 ptr 是默认值 1,明显此时第一位是空的,所以返回 []

第二步: 输入 [1, “aaaaa”],这个时候首先将这个输入内容根据id 添加到流存储中 [empty, empty, "ccccc", empty, empty], 明显ptr 所在的位置是有值的,这个时候遍历数组时,发现只有一组所以返回[“aaaaa”], ptr 为 “aaaaa” 的id + 1 = 2

后续步骤依次类推。

答案

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
var OrderedStream = function(n) {
this.stream = new Array(n + 1).fill(0)
this.ptr = 1
this.length = n + 1
};

/**
* @param {number} idKey
* @param {string} value
* @return {string[]}
*/
OrderedStream.prototype.insert = function(idKey, value) {
this.stream[idKey] = value
if(this.stream[this.ptr]) {
const arr = []
for(let i = this.ptr; i < this.length; i++) {
if(!this.stream[i]) {
this.ptr = i
return arr
}
arr.push(this.stream[i])
}
return arr;
}
return []
};