-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path284. Peeking Iterator.ts
46 lines (40 loc) · 1.01 KB
/
284. Peeking Iterator.ts
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* Runtime: 82 ms, faster than 68.75% of TypeScript online submissions for Peeking Iterator.
* Memory Usage: 44.6 MB, less than 87.50% of TypeScript online submissions for Peeking Iterator.
*/
/**
* // This is the Iterator's API interface.
* // You should not implement it, or speculate about its implementation
* class Iterator {
* hasNext(): boolean {}
*
* next(): number {}
* }
*/
class PeekingIterator {
data: number[];
index: number;
constructor(iterator: Iterator) {
const { data, index } = iterator
this.data = data;
this.index = index;
}
peek(): number {
return this.data[this.index];
}
next(): number {
const returnValue = this.peek();
this.index += 1;
return returnValue;;
}
hasNext(): boolean {
return this.data.length > this.index;
}
}
/**
* Your PeekingIterator object will be instantiated and called as such:
* var obj = new PeekingIterator(iterator)
* var param_1 = obj.peek()
* var param_2 = obj.next()
* var param_3 = obj.hasNext()
*/