7 releases
| 0.3.2 | Dec 3, 2025 |
|---|---|
| 0.3.1 | Jan 21, 2020 |
| 0.2.7 | Jan 21, 2020 |
| 0.0.3 | Jun 25, 2019 |
#1355 in Algorithms
Used in toolbox
25KB
712 lines
Algorithms & data structures
alg
Search algorithms:
| name | complexity | description |
|---|---|---|
| max | O(n) | maximum in &[T] |
| min | O(n) | minimum in &[T] |
| binary | O(log2n) | binary search in &[T] |
| lcs | O(mn) | longest common subsequence |
Sort algorithms:
| name | complexity |
|---|---|
| selection | O(n2) |
| quick | O(n log2n) |
ds
| name | description |
|---|---|
| Matrix | two-dimensional array |