6 releases
0.3.1 | Jan 21, 2020 |
---|---|
0.3.0 | Jan 21, 2020 |
0.2.7 | Jan 21, 2020 |
0.0.3 | Jun 25, 2019 |
#2262 in Algorithms
198 downloads per month
Used in toolbox
25KB
708 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 |