Documentation
¶
Overview ¶
https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/UF.java.html
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type UnionFindList ¶
type UnionFindList []int
func NewUnionFindList ¶
func NewUnionFindList(n int) UnionFindList
func (*UnionFindList) Connect ¶
func (parent *UnionFindList) Connect(p, q int)
func (*UnionFindList) Count ¶
func (parent *UnionFindList) Count() int
func (*UnionFindList) IsConnected ¶
func (parent *UnionFindList) IsConnected(p, q int) bool
func (*UnionFindList) String ¶
func (parent *UnionFindList) String() string
Click to show internal directories.
Click to hide internal directories.