Link Cut Trees
A collection of trees
with operations O(lg n) per operation (amortized)
- maketree
- link(v,w)
- cut(v)
- findroot(v)
- pathaggregate(v)
| License |
License |
|---|---|
| GroupId | GroupIdcom.nachinius |
| ArtifactId | ArtifactIdlinkcuttrees_2.12 |
| Last Version | Last Version0.1.1 |
| Release Date | Release Date |
| Type | Typejar |
| Description |
DescriptionLinkCutTrees
A Link Cut Tree implemenation (performs very fast path aggregations
|
| Project URL |
Project URL |
| Project Organization |
Project Organization |
| Source Code Management |
Source Code Management |
<!-- https://jarcasting.com/artifacts/com.nachinius/linkcuttrees_2.12/ -->
<dependency>
<groupId>com.nachinius</groupId>
<artifactId>linkcuttrees_2.12</artifactId>
<version>0.1.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.nachinius/linkcuttrees_2.12/
implementation 'com.nachinius:linkcuttrees_2.12:0.1.1'
// https://jarcasting.com/artifacts/com.nachinius/linkcuttrees_2.12/
implementation ("com.nachinius:linkcuttrees_2.12:0.1.1")
'com.nachinius:linkcuttrees_2.12:jar:0.1.1'
<dependency org="com.nachinius" name="linkcuttrees_2.12" rev="0.1.1">
<artifact name="linkcuttrees_2.12" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.nachinius', module='linkcuttrees_2.12', version='0.1.1')
)
libraryDependencies += "com.nachinius" % "linkcuttrees_2.12" % "0.1.1"
[com.nachinius/linkcuttrees_2.12 "0.1.1"]
| Group / Artifact | Type | Version |
|---|---|---|
| org.scala-lang : scala-library | jar | 2.12.4 |
| com.nachinius : splaytrees_2.12 | jar | 0.1.1 |
| Group / Artifact | Type | Version |
|---|---|---|
| org.scalatest : scalatest_2.12 | jar | 3.0.4 |
| org.scalacheck : scalacheck_2.12 | jar | 1.13.4 |
A collection of trees
with operations O(lg n) per operation (amortized)