-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
mini-parser.cpp
136 lines (128 loc) · 3.72 KB
/
mini-parser.cpp
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// Time: O(n)
// Space: O(h)
/**
* // This is the interface that allows for creating nested lists.
* // You should not implement it, or speculate about its implementation
* class NestedInteger {
* public:
* // Constructor initializes an empty nested list.
* NestedInteger();
*
* // Constructor initializes a single integer.
* NestedInteger(int value);
*
* // Return true if this NestedInteger holds a single integer, rather than a nested list.
* bool isInteger() const;
*
* // Return the single integer that this NestedInteger holds, if it holds a single integer
* // The result is undefined if this NestedInteger holds a nested list
* int getInteger() const;
*
* // Set this NestedInteger to hold a single integer.
* void setInteger(int value);
*
* // Set this NestedInteger to hold a nested list and adds a nested integer to it.
* void add(const NestedInteger &ni);
*
* // Return the nested list that this NestedInteger holds, if it holds a nested list
* // The result is undefined if this NestedInteger holds a single integer
* const vector<NestedInteger> &getList() const;
* };
*/
// Iterative solution.
class Solution {
public:
NestedInteger deserialize(string s) {
if (s.empty()) {
return NestedInteger();
}
if (s[0] != '[') {
return NestedInteger(stoi(s));
}
stack<NestedInteger> stk;
for (int i = 0, j = 0; j < s.length(); ++j) {
if (s[j] == '[') {
stk.emplace(NestedInteger());
i = j + 1;
} else if (s[j] == ',' || s[j] == ']') {
if (isdigit(s[j - 1])) {
stk.top().add(NestedInteger(stoi(s.substr(i, j - i))));
}
if (s[j] == ']' && stk.size() > 1) {
NestedInteger cur = stk.top();
stk.pop();
stk.top().add(cur);
}
i = j + 1;
}
}
return stk.top();
}
};
// Time: O(n)
// Space: O(h)
// Recursive solution.
class Solution2 {
public:
NestedInteger deserialize(string s) {
if (s.empty()) {
return NestedInteger();
}
int i = 0;
return deserializeHelper(s, &i);
}
private:
NestedInteger deserializeHelper(const string& s, int *i) {
NestedInteger result;
if (s[*i] != '[') {
int j = *i;
while (j < s.length() && (s[j] == '-' || isdigit(s[j]))) {
++j;
}
result.setInteger(stoi(s.substr(*i, j - *i + 1)));
*i = j;
} else {
++(*i);
while (*i < s.length() && s[*i] != ']') {
result.add(deserializeHelper(s, i));
if (*i < s.length() && s[*i] == ',') {
++(*i);
}
}
++(*i);
}
return result;
}
};
// Time: O(n)
// Space: O(n)
// Recursive solution.
class Solution3 {
public:
NestedInteger deserialize(string s) {
if (s.empty()) {
return NestedInteger();
}
istringstream in(s); // copy string: extra O(n) space
return deserializeHelper(in);
}
private:
NestedInteger deserializeHelper(istringstream &in) {
NestedInteger result;
int num = 0;
if (in >> num) {
result.setInteger(num);
} else {
in.clear();
in.get();
while (in.peek() != ']') {
result.add(deserializeHelper(in));
if (in.peek() == ',') {
in.get();
}
}
in.get();
}
return result;
}
};