-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0341-flatten-nested-list-iterator.js
64 lines (60 loc) · 1.73 KB
/
0341-flatten-nested-list-iterator.js
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
* 341. Flatten Nested List Iterator
* https://leetcode.com/problems/flatten-nested-list-iterator/
* Difficulty: Medium
*
* You are given a nested list of integers nestedList. Each element is either an integer or a list
* whose elements may also be integers or other lists. Implement an iterator to flatten it.
*
* Implement the NestedIterator class:
* - NestedIterator(List<NestedInteger> nestedList) Initializes the iterator with the nested list
* nestedList.
* - int next() Returns the next integer in the nested list.
* - boolean hasNext() Returns true if there are still some integers in the nested list and false
* otherwise.
*
* Your code will be tested with the following pseudocode:
* initialize iterator with nestedList
* res = []
* while iterator.hasNext()
* append iterator.next() to the end of res
* return res
*
* If res matches the expected flattened list, then your code will be judged as correct.
*/
/**
* @constructor
* @param {NestedInteger[]} nestedList
*/
var NestedIterator = function(nestedList) {
this.stack = [];
this.flatten(nestedList);
};
/**
* @this NestedIterator
* @param {NestedInteger[]} nestedList
* @returns {void}
*/
NestedIterator.prototype.flatten = function(list) {
for (let i = list.length - 1; i >= 0; i--) {
this.stack.push(list[i]);
}
};
/**
* @this NestedIterator
* @returns {boolean}
*/
NestedIterator.prototype.hasNext = function() {
while (this.stack.length > 0 && !this.stack[this.stack.length - 1].isInteger()) {
const nested = this.stack.pop().getList();
this.flatten(nested);
}
return this.stack.length > 0;
};
/**
* @this NestedIterator
* @returns {integer}
*/
NestedIterator.prototype.next = function() {
return this.stack.pop().getInteger();
};