Click or drag to resize
QuickUnionUF Constructor
Initializes an empty union-find data structure with N sites 0 through N-1. Each site is initially in its own component.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public QuickUnionUF(
	int N
)

Parameters

N
Type: SystemInt32
the number of sites
Exceptions
ExceptionCondition
ArgumentExceptionif N < 0
See Also