-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalid_parentheses.cpp
More file actions
275 lines (218 loc) · 6.42 KB
/
valid_parentheses.cpp
File metadata and controls
275 lines (218 loc) · 6.42 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
// Copyright (c) Omar Boukli-Hacene. All rights reserved.
// Distributed under an MIT-style license that can be
// found in the LICENSE file.
// SPDX-License-Identifier: MIT
#include "forfun/valid_parentheses.hpp"
#include <cassert>
#include <deque>
#include <memory>
#include <string_view>
#include <vector>
namespace forfun::valid_parentheses {
namespace {
[[nodiscard]] auto map_open_to_closed(char8_t const chr) noexcept -> char8_t
{
switch (chr)
{
case u8'(':
return u8')';
case u8'[':
return u8']';
default:
break;
}
return u8'}';
}
} // namespace
namespace ascii_optimized {
[[nodiscard]] auto is_valid(std::u8string_view const view) -> bool
{
using ConstIter = std::u8string_view::const_iterator;
std::vector<char8_t> expected;
expected.reserve(view.size());
for (ConstIter iter{view.cbegin()}; iter != view.cend(); ++iter)
{
if (char8_t const chr{*iter};
(chr & char8_t{0B00000011}) == char8_t{0B00000001})
{
if (expected.empty() || (expected.back() != chr))
{
return false;
}
expected.pop_back();
}
else
{
expected.push_back(chr == u8'(' ? u8')' : chr + char8_t{2});
}
}
return expected.empty();
}
} // namespace ascii_optimized
namespace circuit_breaker {
[[nodiscard]] auto is_valid(std::u8string_view const view) -> bool
{
using ConstIter = std::u8string_view::const_iterator;
using SizeType = std::u8string_view::size_type;
// Odd strings are always invalid.
if ((view.size() % SizeType{2}) != SizeType{})
{
return false;
}
std::vector<char8_t> expected{};
expected.reserve(view.size());
for (ConstIter iter{view.cbegin()}; iter != view.cend(); ++iter)
{
if (char8_t const chr{*iter};
(chr == u8')') || (chr == u8']') || (chr == u8'}'))
{
if (expected.empty() || expected.back() != chr)
{
return false;
}
expected.pop_back();
}
else
{
expected.push_back(map_open_to_closed(chr));
}
}
return expected.empty();
}
} // namespace circuit_breaker
namespace deque_based {
[[nodiscard]] auto is_valid(std::u8string_view const view) -> bool
{
using ConstIter = std::u8string_view::const_iterator;
std::deque<char8_t> expected{};
for (ConstIter iter{view.cbegin()}; iter != view.cend(); ++iter)
{
if (char8_t const chr{*iter};
(chr == u8')') || (chr == u8']') || (chr == u8'}'))
{
if (expected.empty() || expected.back() != chr)
{
return false;
}
expected.pop_back();
}
else
{
expected.push_back(map_open_to_closed(chr));
}
}
return expected.empty();
}
} // namespace deque_based
namespace dyn_array_based {
/// @note Utilizes odd string circuit breaker and a dynamic array.
[[nodiscard]] auto is_valid(std::u8string_view const view) -> bool
{
using ConstIter = std::u8string_view::const_iterator;
using SizeType = std::u8string_view::size_type;
// Odd strings are always invalid.
if ((view.size() % SizeType{2}) != SizeType{})
{
return false;
}
// NOLINTNEXTLINE(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
std::unique_ptr<char8_t[]> const expected
// NOLINTNEXTLINE(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
= std::make_unique_for_overwrite<char8_t[]>(view.size());
assert(expected.get() != nullptr);
char8_t* back_ptr{nullptr};
char8_t back{};
for (ConstIter iter{view.cbegin()}; iter != view.cend(); ++iter)
{
if (char8_t const chr{*iter};
(chr == u8')') || (chr == u8']') || (chr == u8'}'))
{
if ((back_ptr == nullptr) || (back != chr))
{
return false;
}
if (back_ptr == expected.get())
{
back_ptr = nullptr;
back = char8_t{};
}
else
{
// NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
--back_ptr;
back = *back_ptr;
}
}
else
{
back = map_open_to_closed(chr);
if (back_ptr == nullptr)
{
back_ptr = expected.get();
}
else
{
// NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
++back_ptr;
}
assert(back_ptr != nullptr);
*back_ptr = back;
}
}
return back_ptr == nullptr;
}
} // namespace dyn_array_based
namespace vector_based {
[[nodiscard]] auto is_valid(std::u8string_view const view) -> bool
{
using ConstIter = std::u8string_view::const_iterator;
std::vector<char8_t> expected{};
expected.reserve(view.size());
for (ConstIter iter{view.cbegin()}; iter != view.cend(); ++iter)
{
if (char8_t const chr{*iter};
(chr == u8')') || (chr == u8']') || (chr == u8'}'))
{
if (expected.empty() || expected.back() != chr)
{
return false;
}
expected.pop_back();
}
else
{
expected.push_back(map_open_to_closed(chr));
}
}
return expected.empty();
}
} // namespace vector_based
namespace vector_based_demi_allocated {
[[nodiscard]] auto is_valid(std::u8string_view const view) -> bool
{
using ConstIter = std::u8string_view::const_iterator;
std::vector<char8_t> expected{};
expected.reserve(view.size() / 2UZ);
char8_t back{};
for (ConstIter iter{view.cbegin()}; iter != view.cend(); ++iter)
{
if (char8_t const chr{*iter};
(chr == u8')') || (chr == u8']') || (chr == u8'}'))
{
if (expected.empty() || back != chr)
{
return false;
}
expected.pop_back();
back = expected.empty() ? char8_t{} : expected.back();
}
else
{
back = map_open_to_closed(chr);
expected.push_back(back);
}
}
return expected.empty();
}
} // namespace vector_based_demi_allocated
} // namespace forfun::valid_parentheses