Skip to content
This repository was archived by the owner on Feb 6, 2023. It is now read-only.

Commit df02a0b

Browse files
committed
docstrings
1 parent 7007e60 commit df02a0b

12 files changed

+151
-232
lines changed

README.md

+21-82
Original file line numberDiff line numberDiff line change
@@ -1,88 +1,27 @@
1-
<img align="right" src="https://user-images.githubusercontent.com/3381451/40880432-5b9e7086-66b9-11e8-9718-4b1ea4eae317.png" width="25%">
1+
<img align="right" src="https://user-images.githubusercontent.com/3381451/40880432-5b9e7086-66b9-11e8-9718-4b1ea4eae317.png" width="20%">
22

33
[![Build Status](https://travis-ci.org/storm-ptr/step.svg?branch=master)](https://travis-ci.org/storm-ptr/step)
44
[![Build Status](https://ci.appveyor.com/api/projects/status/github/storm-ptr/step?svg=true&branch=master)](https://ci.appveyor.com/project/storm-ptr/step/branch/master)
55

66
Step is a library of STL-like algorithms and data structures (C++17, header-only).
77

8-
Algorithms:
9-
* <details><summary>edit distance</summary><p>
10-
11-
[wiki](https://en.wikipedia.org/wiki/Levenshtein_distance)
12-
```C++
13-
pairs_t pairs;
14-
step::edit_distance::join("this"sv, "has"sv, std::back_inserter(pairs));
15-
CHECK(pairs ==
16-
pairs_t{{'t', std::nullopt}, {'h', 'h'}, {'i', 'a'}, {'s', 's'}});
17-
```
18-
</p></details>
19-
* <details><summary>longest common subsequence</summary><p>
20-
21-
[wiki](https://en.wikipedia.org/wiki/Longest_common_subsequence_problem)
22-
```C++
23-
std::string str;
24-
step::longest_common_subsequence::intersection("LCS is the basis of "sv,
25-
"the diff utility"sv,
26-
std::back_inserter(str));
27-
CHECK(str == "the if ");
28-
```
29-
</p></details>
30-
* <details><summary>longest common substring</summary><p>
31-
32-
[wiki](https://en.wikipedia.org/wiki/Longest_common_substring_problem)
33-
```C++
34-
auto range = step::longest_common_substring::find_with_suffix_tree(
35-
"the longest string that is #", "a substring of two strings $");
36-
CHECK("string " == std::string(range.first, range.second));
37-
```
38-
</p></details>
39-
* <details><summary>longest increasing subsequence</summary><p>
40-
41-
[wiki](https://en.wikipedia.org/wiki/Longest_increasing_subsequence)
42-
```C++
43-
std::vector v{6, 3, 4, 8, 10, 5, 7, 1, 9, 2};
44-
int expect[] = {3, 4, 5, 7, 9};
45-
auto it = step::longest_increasing_subsequence::partition(v);
46-
CHECK(std::equal(v.begin(), it, std::begin(expect), std::end(expect)));
47-
```
48-
</p></details>
49-
* <details><summary>longest repeated substring</summary><p>
50-
51-
[wiki](https://en.wikipedia.org/wiki/Longest_repeated_substring_problem)
52-
```C++
53-
auto range = step::longest_repeated_substring::find_with_suffix_array(
54-
"the longest substring of a string that occurs at least twice");
55-
CHECK("string " == std::string(range.first, range.second));
56-
```
57-
</p></details>
58-
* <details><summary>maximum subarray</summary><p>
59-
60-
[wiki](https://en.wikipedia.org/wiki/Maximum_subarray_problem)
61-
```C++
62-
int arr[] = {-2, -3, 4, -1, -2, 1, 5, -3};
63-
std::array expect{4, -1, -2, 1, 5};
64-
auto range = step::maximum_subarray::find(arr);
65-
CHECK(std::equal(range.first, range.second, expect.begin(), expect.end()));
66-
```
67-
</p></details>
68-
69-
Data structures:
70-
* <details><summary>suffix array</summary><p>
71-
72-
[wiki](https://en.wikipedia.org/wiki/Suffix_array)
73-
```C++
74-
auto str = "how can I quickly search for text within a document?"sv;
75-
step::suffix_array arr{str};
76-
CHECK(arr.find("quick"sv) == 10);
77-
```
78-
</p></details>
79-
* <details><summary>suffix tree</summary><p>
80-
81-
[wiki](https://en.wikipedia.org/wiki/Suffix_tree)
82-
```C++
83-
auto str = "use the quick find feature to search for a text"sv;
84-
step::suffix_tree tree{};
85-
std::copy(str.begin(), str.end(), std::back_inserter(tree));
86-
CHECK(tree.find("quick"sv) == 8);
87-
```
88-
</p></details>
8+
### Algorithms:
9+
* [edit distance](https://en.wikipedia.org/wiki/Levenshtein_distance)
10+
([snippet](https://github.com/storm-ptr/step/blob/7007e6030168d54d55e707022f7531752cc8f20b/test/edit_distance.hpp#L15-L19))
11+
* [longest common subsequence</summary>](https://en.wikipedia.org/wiki/Longest_common_subsequence_problem)
12+
([snippet](https://github.com/storm-ptr/step/blob/7007e6030168d54d55e707022f7531752cc8f20b/test/longest_common_subsequence.hpp#L13-L17),
13+
[example](https://github.com/storm-ptr/step/blob/7007e6030168d54d55e707022f7531752cc8f20b/example/diff/main.cpp#L53-L71))
14+
* [longest common substring](https://en.wikipedia.org/wiki/Longest_common_substring_problem)
15+
([snippet](https://github.com/storm-ptr/step/blob/7007e6030168d54d55e707022f7531752cc8f20b/test/longest_common_substring.hpp#L13-L15))
16+
* [longest increasing subsequence](https://en.wikipedia.org/wiki/Longest_increasing_subsequence)
17+
([snippet](https://github.com/storm-ptr/step/blob/7007e6030168d54d55e707022f7531752cc8f20b/test/longest_increasing_subsequence.hpp#L14-L17))
18+
* [longest repeated substring](https://en.wikipedia.org/wiki/Longest_repeated_substring_problem)
19+
([snippet](https://github.com/storm-ptr/step/blob/7007e6030168d54d55e707022f7531752cc8f20b/test/longest_repeated_substring.hpp#L13-L15))
20+
* [maximum subarray](https://en.wikipedia.org/wiki/Maximum_subarray_problem)
21+
([snippet](https://github.com/storm-ptr/step/blob/7007e6030168d54d55e707022f7531752cc8f20b/test/maximum_subarray.hpp#L13-L16))
22+
23+
### Data structures:
24+
* [suffix array](https://en.wikipedia.org/wiki/Suffix_array)
25+
([snippet](https://github.com/storm-ptr/step/blob/7007e6030168d54d55e707022f7531752cc8f20b/test/suffix.hpp#L20-L22))
26+
* [suffix tree](https://en.wikipedia.org/wiki/Suffix_tree)
27+
([snippet](https://github.com/storm-ptr/step/blob/7007e6030168d54d55e707022f7531752cc8f20b/test/suffix.hpp#L27-L30))

detail/hirschberg.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
#include <step/detail/utility.hpp>
77

8-
/// @see https://en.wikipedia.org/wiki/Hirschberg's_algorithm
98
namespace step::hirschberg {
109

1110
template <class RandomIt1, class RandomIt2, class DynamicProg, class BinaryOp>
@@ -30,6 +29,7 @@ auto partition_point(RandomIt1 first1,
3029
return op(split1, split2);
3130
}
3231

32+
/// @see https://en.wikipedia.org/wiki/Hirschberg's_algorithm
3333
template <class RandomIt1, class RandomIt2, class OutputIt, class DynamicProg>
3434
OutputIt trace(RandomIt1 first1,
3535
RandomIt1 last1,

edit_distance.hpp

+10-10
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ template <class Equal>
3535
struct dynamic_programming {
3636
Equal eq;
3737

38-
/// @see https://en.wikipedia.org/wiki/Wagner–Fischer_algorithm
3938
template <class RandomIt1, class RandomIt2>
4039
auto make_last_row(RandomIt1 first1,
4140
RandomIt1 last1,
@@ -89,15 +88,16 @@ struct dynamic_programming {
8988

9089
} // namespace detail
9190

92-
/**
93-
* Find the optimal sequence alignment between two strings. Optimality is
94-
* measured with the Levenshtein distance, defined to be the sum of the costs of
95-
* insertions, replacements, deletions, and null actions needed to change one
96-
* string into the other.
97-
* Time complexity O(N*M), space complexity O(min(N,M)), where:
98-
* N = std::distance(first1, last1), M = std::distance(first2, last2).
99-
* @see https://en.wikipedia.org/wiki/Levenshtein_distance
100-
*/
91+
/// Find the optimal sequence alignment between two strings.
92+
93+
/// Optimality is measured with the Levenshtein distance,
94+
/// defined to be the sum of the costs of
95+
/// insertions, replacements, deletions, and null actions needed
96+
/// to change one string into the other.
97+
/// Time complexity O(N*M), space complexity O(min(N,M)), where:
98+
/// N = std::distance(first1, last1), M = std::distance(first2, last2).
99+
/// @see https://en.wikipedia.org/wiki/Levenshtein_distance
100+
/// @see https://en.wikipedia.org/wiki/Wagner%E2%80%93Fischer_algorithm
101101
template <class RandomIt1, class RandomIt2, class OutputIt, class Equal>
102102
OutputIt join(RandomIt1 first1,
103103
RandomIt1 last1,

kahan.hpp

+3-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@
77

88
namespace step::kahan {
99

10-
/**
11-
* Reduces the numerical error in the total obtained by adding a sequence of
12-
* floating point numbers. (What about complex numbers?)
13-
* @see https://en.wikipedia.org/wiki/Kahan_summation_algorithm
14-
*/
10+
/// Reduces the numerical error in the total obtained by adding a sequence of
11+
/// floating point numbers. (What about complex numbers?)
12+
/// @see https://en.wikipedia.org/wiki/Kahan_summation_algorithm
1513
template <class T>
1614
class floating_point {
1715
T value_{};

longest_common_subsequence.hpp

+8-9
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ template <class Equal>
1212
struct dynamic_programming {
1313
Equal eq;
1414

15-
/// @see https://www.geeksforgeeks.org/longest-common-subsequence/
1615
template <class RandomIt1, class RandomIt2>
1716
auto make_last_row(RandomIt1 first1,
1817
RandomIt1 last1,
@@ -48,14 +47,14 @@ struct dynamic_programming {
4847

4948
} // namespace detail
5049

51-
/**
52-
* Find the longest subsequence present in two sequences. A subsequence is a
53-
* sequence that appears in the same relative order, but not necessarily
54-
* contiguous.
55-
* Time complexity O(N*M), space complexity O(min(N,M)), where:
56-
* N = std::distance(first1, last1), M = std::distance(first2, last2).
57-
* @see https://en.wikipedia.org/wiki/Longest_common_subsequence_problem
58-
*/
50+
/// Find the longest subsequence present in two sequences.
51+
52+
/// A subsequence is a sequence that appears in the same relative order,
53+
/// but not necessarily contiguous.
54+
/// Time complexity O(N*M), space complexity O(min(N,M)), where:
55+
/// N = std::distance(first1, last1), M = std::distance(first2, last2).
56+
/// @see https://en.wikipedia.org/wiki/Longest_common_subsequence_problem
57+
/// @see https://www.geeksforgeeks.org/longest-common-subsequence/
5958
template <class RandomIt1, class RandomIt2, class OutputIt, class Equal>
6059
OutputIt intersection(RandomIt1 first1,
6160
RandomIt1 last1,

longest_common_substring.hpp

+15-18
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include <step/suffix_array.hpp>
77
#include <step/suffix_tree.hpp>
88

9-
/// @see https://en.wikipedia.org/wiki/Longest_common_substring_problem
109
namespace step::longest_common_substring {
1110
namespace detail {
1211

@@ -78,14 +77,14 @@ struct suffix_tree_searcher {
7877

7978
} // namespace detail
8079

81-
/**
82-
* Find the longest string that is a substring of two strings.
83-
* Time complexity O((N+M)*log(N+M)*log(N+M)), space complexity O(N+M), where:
84-
* N = std::distance(first1, last1) and M = std::distance(first2, last2).
85-
* A suffix array with optional parameter is used under the hood:
86-
* @param Compare - to determine the order of characters.
87-
* @return a pair of iterators defining the wanted substring.
88-
*/
80+
/// Find the longest string that is a substring of two strings.
81+
82+
/// Time complexity O((N+M)*log(N+M)*log(N+M)), space complexity O(N+M), where:
83+
/// N = std::distance(first1, last1) and M = std::distance(first2, last2).
84+
/// A suffix array with optional parameter is used under the hood:
85+
/// @tparam Compare - to determine the order of characters.
86+
/// @return a pair of iterators defining the wanted substring.
87+
/// @see https://en.wikipedia.org/wiki/Longest_common_substring_problem
8988
template <class Compare = std::less<>, class RandomIt1, class RandomIt2>
9089
auto find_with_suffix_array(RandomIt1 first1,
9190
RandomIt1 last1,
@@ -104,15 +103,13 @@ auto find_with_suffix_array(const RandomRng1& rng1, const RandomRng2& rng2)
104103
std::begin(rng1), std::end(rng1), std::begin(rng2), std::end(rng2));
105104
}
106105

107-
/**
108-
* Find the longest string that is a substring of two strings,
109-
* padded with unique string terminators.
110-
* Time complexity O((N+M)*log(N+M)), space complexity O(N+M), where:
111-
* N = std::distance(first1, last1) and M = std::distance(first2, last2).
112-
* A suffix tree with optional parameter is used under the hood:
113-
* @param Map - to associate characters with edges.
114-
* @return a pair of iterators defining the wanted substring.
115-
*/
106+
/// Find the longest string that is a substring of two strings,
107+
/// padded with unique string terminators.
108+
/// Time complexity O((N+M)*log(N+M)), space complexity O(N+M), where:
109+
/// N = std::distance(first1, last1) and M = std::distance(first2, last2).
110+
/// A suffix tree with optional parameter is used under the hood:
111+
/// @tparam Map - to associate characters with edges.
112+
/// @return a pair of iterators defining the wanted substring.
116113
template <template <class...> class Map = std::unordered_map,
117114
class RandomIt1,
118115
class RandomIt2>

longest_increasing_subsequence.hpp

+20-22
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,9 @@
1010
#include <unordered_map>
1111
#include <vector>
1212

13-
// @see https://en.wikipedia.org/wiki/Longest_increasing_subsequence
1413
namespace step::longest_increasing_subsequence {
1514
namespace detail {
1615

17-
/*
18-
* @see
19-
* https://www.geeksforgeeks.org/longest-monotonically-increasing-subsequence-size-n-log-n/
20-
*/
2116
class increasing_subsequences {
2217
std::vector<size_t> tails_;
2318
std::unordered_map<size_t, std::optional<size_t>> prevs_;
@@ -57,25 +52,28 @@ class increasing_subsequences {
5752

5853
} // namespace detail
5954

60-
/**
61-
* Finds a subsequence of a given sequence in which the subsequence's elements
62-
* are in sorted order, lowest to highest, and in which the subsequence is as
63-
* long as possible. This subsequence is not necessarily contiguous, or unique.
64-
* Reorders the elements in such a way that all elements for the subsequence
65-
* precede the others.
66-
* @return iterator to the end of the subsequence.
67-
* Time complexity O(N*log(N)), space complexity O(N), where:
68-
* N = std::distance(first, last).
69-
*/
55+
/// Find longest increasing subsequence (LIS) in the array.
56+
57+
/// The subsequence's elements are in sorted order, lowest to highest.
58+
/// This subsequence is not necessarily contiguous, or unique.
59+
/// Reorders the elements in such a way that all elements for the subsequence
60+
/// precede the others.
61+
/// @return iterator to the end of the subsequence.
62+
/// Time complexity O(N*log(N)), space complexity O(N), where:
63+
/// N = std::distance(first, last).
64+
/// @see https://en.wikipedia.org/wiki/Longest_increasing_subsequence
65+
/// @see
66+
/// https://www.geeksforgeeks.org/longest-monotonically-increasing-subsequence-size-n-log-n/
7067
template <class RandomIt, class Compare>
71-
auto partition(RandomIt first, RandomIt last, Compare cmp)
68+
auto partition(RandomIt first, RandomIt last, Compare&& cmp)
7269
{
7370
using std::swap;
7471
auto it = first;
75-
for (auto i : detail::increasing_subsequences{first, last, cmp}.longest()) {
76-
swap(first[i], *it);
77-
++it;
78-
}
72+
for (auto i :
73+
detail::increasing_subsequences{
74+
first, last, std::forward<Compare>(cmp)}
75+
.longest())
76+
swap(first[i], *it++);
7977
return it;
8078
}
8179

@@ -86,10 +84,10 @@ auto partition(RandomIt first, RandomIt last)
8684
}
8785

8886
template <class RandomRng, class Compare>
89-
auto partition(RandomRng& rng, Compare cmp)
87+
auto partition(RandomRng& rng, Compare&& cmp)
9088
{
9189
return longest_increasing_subsequence::partition(
92-
std::begin(rng), std::end(rng), cmp);
90+
std::begin(rng), std::end(rng), std::forward<Compare>(cmp));
9391
}
9492

9593
template <class RandomRng>

longest_repeated_substring.hpp

+15-18
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include <step/suffix_array.hpp>
77
#include <step/suffix_tree.hpp>
88

9-
/// @see https://en.wikipedia.org/wiki/Longest_repeated_substring_problem
109
namespace step::longest_repeated_substring {
1110
namespace detail {
1211

@@ -51,14 +50,14 @@ struct suffix_tree_searcher {
5150

5251
} // namespace detail
5352

54-
/**
55-
* Find the longest substring of text that occurs at least twice.
56-
* Time complexity O(N*log(N)*log(N)), space complexity O(N), where:
57-
* N = std::distance(first, last).
58-
* A suffix array with optional parameter is used under the hood:
59-
* @param Compare - to determine the order of characters.
60-
* @return a pair of iterators defining the wanted substring.
61-
*/
53+
/// Find the longest substring of text that occurs at least twice.
54+
55+
/// Time complexity O(N*log(N)*log(N)), space complexity O(N), where:
56+
/// N = std::distance(first, last).
57+
/// A suffix array with optional parameter is used under the hood:
58+
/// @tparam Compare - to determine the order of characters.
59+
/// @return a pair of iterators defining the wanted substring.
60+
/// @see https://en.wikipedia.org/wiki/Longest_repeated_substring_problem
6261
template <class Compare = std::less<>, class RandomIt>
6362
auto find_with_suffix_array(RandomIt first, RandomIt last)
6463
{
@@ -73,15 +72,13 @@ auto find_with_suffix_array(const RandomRng& rng)
7372
std::begin(rng), std::end(rng));
7473
}
7574

76-
/**
77-
* Find the longest substring of text (padded with unique string terminator)
78-
* that occurs at least twice.
79-
* Time complexity O(N*log(N)), space complexity O(N), where:
80-
* N = std::distance(first, last).
81-
* A suffix tree with optional parameter is used under the hood:
82-
* @param Map - to associate characters with edges.
83-
* @return a pair of iterators defining the wanted substring.
84-
*/
75+
/// Find the longest substring of text (padded with unique string terminator)
76+
/// that occurs at least twice.
77+
/// Time complexity O(N*log(N)), space complexity O(N), where:
78+
/// N = std::distance(first, last).
79+
/// A suffix tree with optional parameter is used under the hood:
80+
/// @tparam Map - to associate characters with edges.
81+
/// @return a pair of iterators defining the wanted substring.
8582
template <template <class...> class Map = std::unordered_map, class RandomIt>
8683
auto find_with_suffix_tree(RandomIt first, RandomIt last)
8784
{

0 commit comments

Comments
 (0)