@thi.ng/disjoint-set
Advanced tools
Comparing version 1.1.12 to 1.1.13
# Change Log | ||
- **Last updated**: 2025-01-29T16:25:48Z | ||
- **Last updated**: 2025-02-13T16:03:11Z | ||
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub) | ||
@@ -5,0 +5,0 @@ |
@@ -6,2 +6,4 @@ /** | ||
* @remarks | ||
* References: | ||
* | ||
* - https://en.wikipedia.org/wiki/Disjoint-set_data_structure | ||
@@ -17,3 +19,3 @@ * - https://algs4.cs.princeton.edu/lectures/15UnionFind-2x2.pdf | ||
* | ||
* @param n - initial capacity, ID range [0..n) | ||
* @param n - initial capacity, ID range `[0,n)` | ||
*/ | ||
@@ -20,0 +22,0 @@ constructor(n: number); |
@@ -8,3 +8,3 @@ class DisjointSet { | ||
* | ||
* @param n - initial capacity, ID range [0..n) | ||
* @param n - initial capacity, ID range `[0,n)` | ||
*/ | ||
@@ -11,0 +11,0 @@ constructor(n) { |
{ | ||
"name": "@thi.ng/disjoint-set", | ||
"version": "1.1.12", | ||
"version": "1.1.13", | ||
"description": "TypedArray-based disjoint set implementation with quick union & path compression", | ||
@@ -42,4 +42,4 @@ "type": "module", | ||
"devDependencies": { | ||
"esbuild": "^0.24.2", | ||
"typedoc": "^0.27.6", | ||
"esbuild": "^0.25.0", | ||
"typedoc": "^0.27.7", | ||
"typescript": "^5.7.3" | ||
@@ -88,3 +88,3 @@ }, | ||
}, | ||
"gitHead": "fc1d498e8d4b690db873c30cc594352a804e7a65\n" | ||
"gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n" | ||
} |
21569
152