1 | <?php |
||
5 | * @link https://github.com/SiroDiaz/DataStructures |
||
6 | * @copyright Copyright (c) 2017 Siro Díaz Palazón |
||
7 | * @license https://github.com/SiroDiaz/DataStructures/blob/master/README.md (MIT License) |
||
8 | */ |
||
9 | namespace DataStructures\Sets; |
||
10 | |||
11 | use DataStructures\Trees\Nodes\DisjointNode; |
||
12 | |||
13 | /** |
||
14 | * DisjointSet. |
||
15 | * |
||
16 | * The DisjointSet class represents a disjoint set. |
||
58 | } |