-
Notifications
You must be signed in to change notification settings - Fork 6k
/
Copy pathDisjointSet.h
66 lines (49 loc) · 2.18 KB
/
DisjointSet.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
This file is part of solidity.
solidity is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
solidity is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with solidity. If not, see <http://www.gnu.org/licenses/>.
*/
// SPDX-License-Identifier: GPL-3.0
#pragma once
#include <cstddef>
#include <set>
#include <vector>
namespace solidity::util
{
/// Implementation of the Disjoint set data structure [1], also called union-set, with path-halving [2].
/// This implementation assumes that each set element is identified with an element in a iota range (hence contiguous).
///
/// [1] https://en.wikipedia.org/wiki/Disjoint-set_data_structure
/// [2] Tarjan, Robert E., and Jan Van Leeuwen. "Worst-case analysis of set union algorithms."
/// Journal of the ACM (JACM) 31.2 (1984): 245-281.
class ContiguousDisjointSet
{
public:
using size_type = size_t;
using value_type = size_t;
/// Constructs a new disjoint set datastructure with `_numNodes` elements and each element in its own individual set
explicit ContiguousDisjointSet(size_t _numNodes);
size_type numSets() const;
/// finds one representative for a set that contains `_element`
value_type find(value_type _element) const;
/// joins the two sets containing `_x` and `_y`, returns true if the sets were disjoint, otherwise false
void merge(value_type _x, value_type _y, bool _mergeBySize=true);
bool sameSubset(value_type _x, value_type _y) const;
size_type sizeOfSubset(value_type _x) const;
std::set<value_type> subset(value_type _x) const;
std::vector<std::set<value_type>> subsets() const;
private:
std::vector<value_type> mutable m_parents; // mutable for path compression, doesn't change semantic state
std::vector<value_type> m_neighbors;
std::vector<value_type> m_sizes;
size_type m_numSets;
};
}