|
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%"> |
2 | 2 |
|
3 | 3 | [](https://travis-ci.org/storm-ptr/step)
|
4 | 4 | [](https://ci.appveyor.com/project/storm-ptr/step/branch/master)
|
5 | 5 |
|
6 | 6 | Step is a library of STL-like algorithms and data structures (C++17, header-only).
|
7 | 7 |
|
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)) |
0 commit comments