Function
Static Public Summary | ||
public |
Universe(n: *, List: *) |
|
public |
Universe(n: *, List: *) |
|
public |
Universe(n: *, List: *) |
|
public |
Universe(n: *, List: *) |
|
public |
find(p: *, x: *): * |
|
public |
find(p: *, node: *): * |
|
public |
find(p: *, node: *): * |
|
public |
find(p: *, node: *): * |
|
public |
find(p: *, node: *): * |
|
public |
find(next: *, node: *): * |
|
public |
find(back: *, node: *) |
|
public |
find(back: *, node: *) |
|
public |
identity(n: *, List: *): * |
|
public |
nulls(n: *, List: *): * |
|
public |
ones(n: *, List: *): * |
|
public |
rankedtreeunion(p: *, r: *, a: *, b: *): * |
|
public |
union(p: *, a: *, b: *): * |
|
public |
union(back: *, next: *, a: *, b: *): * |
|
public |
union(back: *, next: *, a: *, b: *): * |
|
public |
union(back: *, next: *, length: *, a: *, b: *): * |
|
public |
zeros(n: *, List: *): * |
Static Private Summary | ||
private |
_RankedTreeUniverse(union: *, find: *): * |
Static Public
public Universe(n: *, List: *) source
import {Universe} from '@union-find/contiguous/src/adt/Forest.js'
Params:
Name | Type | Attribute | Description |
n | * | ||
List | * |
|
public Universe(n: *, List: *) source
import {Universe} from '@union-find/contiguous/src/adt/LinkedList.js'
Params:
Name | Type | Attribute | Description |
n | * | ||
List | * |
|
public Universe(n: *, List: *) source
import {Universe} from '@union-find/contiguous/src/adt/LinkedListWithHead.js'
Params:
Name | Type | Attribute | Description |
n | * | ||
List | * |
|
public Universe(n: *, List: *) source
import {Universe} from '@union-find/contiguous/src/adt/LinkedListWithHeadAndLength.js'
Params:
Name | Type | Attribute | Description |
n | * | ||
List | * |
|
public find(p: *, x: *): * source
import {find} from '@union-find/contiguous/src/adt/Forest.js'
Params:
Name | Type | Attribute | Description |
p | * | ||
x | * |
Return:
* |
public find(p: *, node: *): * source
import {find} from '@union-find/contiguous/src/adt/ForestAmortizedHalving.js'
Params:
Name | Type | Attribute | Description |
p | * | ||
node | * |
Return:
* |
public find(p: *, node: *): * source
import {find} from '@union-find/contiguous/src/adt/ForestAmortizedRecursive.js'
Params:
Name | Type | Attribute | Description |
p | * | ||
node | * |
Return:
* |
public find(p: *, node: *): * source
import {find} from '@union-find/contiguous/src/adt/ForestAmortizedSplitting.js'
Params:
Name | Type | Attribute | Description |
p | * | ||
node | * |
Return:
* |
public find(p: *, node: *): * source
import {find} from '@union-find/contiguous/src/adt/ForestAmortizedTwoPasses.js'
Params:
Name | Type | Attribute | Description |
p | * | ||
node | * |
Return:
* |
public find(next: *, node: *): * source
import {find} from '@union-find/contiguous/src/adt/LinkedList.js'
Params:
Name | Type | Attribute | Description |
next | * | ||
node | * |
Return:
* |
public find(back: *, node: *) source
import {find} from '@union-find/contiguous/src/adt/LinkedListWithHead.js'
Params:
Name | Type | Attribute | Description |
back | * | ||
node | * |
public find(back: *, node: *) source
import {find} from '@union-find/contiguous/src/adt/LinkedListWithHeadAndLength.js'
Params:
Name | Type | Attribute | Description |
back | * | ||
node | * |
public identity(n: *, List: *): * source
import identity from '@union-find/contiguous/src/fundamentals/identity.js'
Params:
Name | Type | Attribute | Description |
n | * | ||
List | * |
|
Return:
* |
public nulls(n: *, List: *): * source
import nulls from '@union-find/contiguous/src/fundamentals/nulls.js'
Params:
Name | Type | Attribute | Description |
n | * | ||
List | * |
|
Return:
* |
public ones(n: *, List: *): * source
import ones from '@union-find/contiguous/src/fundamentals/ones.js'
Params:
Name | Type | Attribute | Description |
n | * | ||
List | * |
|
Return:
* |
public rankedtreeunion(p: *, r: *, a: *, b: *): * source
import rankedtreeunion from '@union-find/contiguous/src/fundamentals/rankedtreeunion.js'
Params:
Name | Type | Attribute | Description |
p | * | ||
r | * | ||
a | * | ||
b | * |
Return:
* |
public union(p: *, a: *, b: *): * source
import {union} from '@union-find/contiguous/src/adt/Forest.js'
Params:
Name | Type | Attribute | Description |
p | * | ||
a | * | ||
b | * |
Return:
* |
public union(back: *, next: *, a: *, b: *): * source
import {union} from '@union-find/contiguous/src/adt/LinkedList.js'
Params:
Name | Type | Attribute | Description |
back | * | ||
next | * | ||
a | * | ||
b | * |
Return:
* |
public union(back: *, next: *, a: *, b: *): * source
import {union} from '@union-find/contiguous/src/adt/LinkedListWithHead.js'
Params:
Name | Type | Attribute | Description |
back | * | ||
next | * | ||
a | * | ||
b | * |
Return:
* |
public union(back: *, next: *, length: *, a: *, b: *): * source
import {union} from '@union-find/contiguous/src/adt/LinkedListWithHeadAndLength.js'
Params:
Name | Type | Attribute | Description |
back | * | ||
next | * | ||
length | * | ||
a | * | ||
b | * |
Return:
* |
public zeros(n: *, List: *): * source
import zeros from '@union-find/contiguous/src/fundamentals/zeros.js'
Params:
Name | Type | Attribute | Description |
n | * | ||
List | * |
|
Return:
* |
Static Private
private _RankedTreeUniverse(union: *, find: *): * source
import _RankedTreeUniverse from '@union-find/contiguous/src/fundamentals/_RankedTreeUniverse.js'
Params:
Name | Type | Attribute | Description |
union | * | ||
find | * |
Return:
* |