aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/erasure/helpers.cpp
diff options
context:
space:
mode:
authorqrort <qrort@yandex-team.com>2022-11-30 23:47:12 +0300
committerqrort <qrort@yandex-team.com>2022-11-30 23:47:12 +0300
commit22f8ae0e3f5d68b92aecccdf96c1d841a0334311 (patch)
treebffa27765faf54126ad44bcafa89fadecb7a73d7 /library/cpp/erasure/helpers.cpp
parent332b99e2173f0425444abb759eebcb2fafaa9209 (diff)
downloadydb-22f8ae0e3f5d68b92aecccdf96c1d841a0334311.tar.gz
validate canons without yatest_common
Diffstat (limited to 'library/cpp/erasure/helpers.cpp')
-rw-r--r--library/cpp/erasure/helpers.cpp80
1 files changed, 80 insertions, 0 deletions
diff --git a/library/cpp/erasure/helpers.cpp b/library/cpp/erasure/helpers.cpp
new file mode 100644
index 0000000000..74edeca52c
--- /dev/null
+++ b/library/cpp/erasure/helpers.cpp
@@ -0,0 +1,80 @@
+#include "helpers.h"
+
+#include <algorithm>
+#include <iterator>
+
+namespace NErasure {
+
+TPartIndexList MakeSegment(int begin, int end) {
+ TPartIndexList result(end - begin);
+ for (int i = begin; i < end; ++i) {
+ result[i - begin] = i;
+ }
+ return result;
+}
+
+TPartIndexList MakeSingleton(int elem) {
+ TPartIndexList result;
+ result.push_back(elem);
+ return result;
+}
+
+TPartIndexList Difference(int begin, int end, const TPartIndexList& subtrahend) {
+ size_t pos = 0;
+ TPartIndexList result;
+ for (int i = begin; i < end; ++i) {
+ while (pos < subtrahend.size() && subtrahend[pos] < i) {
+ pos += 1;
+ }
+ if (pos == subtrahend.size() || subtrahend[pos] != i) {
+ result.push_back(i);
+ }
+ }
+ return result;
+}
+
+TPartIndexList Difference(const TPartIndexList& first, const TPartIndexList& second) {
+ TPartIndexList result;
+ std::set_difference(first.begin(), first.end(), second.begin(), second.end(), std::back_inserter(result));
+ return result;
+}
+
+TPartIndexList Difference(const TPartIndexList& set, int subtrahend) {
+ return Difference(set, MakeSingleton(subtrahend));
+}
+
+TPartIndexList Intersection(const TPartIndexList& first, const TPartIndexList& second) {
+ TPartIndexList result;
+ std::set_intersection(first.begin(), first.end(), second.begin(), second.end(), std::back_inserter(result));
+ return result;
+}
+
+TPartIndexList Union(const TPartIndexList& first, const TPartIndexList& second) {
+ TPartIndexList result;
+ std::set_union(first.begin(), first.end(), second.begin(), second.end(), std::back_inserter(result));
+ return result;
+}
+
+bool Contains(const TPartIndexList& set, int elem) {
+ return std::binary_search(set.begin(), set.end(), elem);
+}
+
+TPartIndexList UniqueSortedIndices(const TPartIndexList& indices) {
+ TPartIndexList copy = indices;
+ std::sort(copy.begin(), copy.end());
+ copy.erase(std::unique(copy.begin(), copy.end()), copy.end());
+ return copy;
+}
+
+TPartIndexList ExtractRows(const TPartIndexList& matrix, int width, const TPartIndexList& rows) {
+ Y_ASSERT(matrix.size() % width == 0);
+ TPartIndexList result(width * rows.size());
+ for (size_t i = 0; i < rows.size(); ++i) {
+ auto start = matrix.begin() + rows[i] * width;
+ std::copy(start, start + width, result.begin() + i * width);
+ }
+ return result;
+}
+
+} // namespace NErasure
+