Use clang-format

This commit is contained in:
stefiosif
2024-08-03 13:14:42 +03:00
parent d216a9611f
commit 3951db7ff9
17 changed files with 262 additions and 287 deletions

View File

@@ -7,8 +7,7 @@
namespace algo {
template<typename T>
class Italiano : public DecrementalReachability<T> {
template <typename T> class Italiano : public DecrementalReachability<T> {
public:
Italiano() = default;
@@ -19,17 +18,18 @@ public:
// Execute reachability query q(u, v) from vertex u to vertex v
// in O(1) using the transitive closure matrix
bool query(const T& u, const T& v) override;
bool query(const T &u, const T &v) override;
// Delete collection of edges
void remove(const std::vector<std::pair<T, T>>& edges) override;
void remove(const std::vector<std::pair<T, T>> &edges) override;
// Delete edge e(u, v) and explicitly maintain the transitive closure
void remove(const T& u, const T& v);
void remove(const T &u, const T &v);
private:
// Transitive closure matrix
std::unordered_map<T, std::unordered_map<T, bool>> TC;
// For each vertex, store a reachability tree created as a BFS tree
std::unordered_map<T, BreadthFirstTree<T>> RT;
@@ -47,42 +47,41 @@ private:
void repairTrees();
};
template<typename T>
void Italiano<T>::init() {
for (const auto& u : this->G.vertices()) {
for (const auto& v : this->G.adjList[u]) {
template <typename T> void Italiano<T>::init() {
for (const auto &u : this->G.vertices()) {
for (const auto &v : this->G.adjList[u]) {
E[v].inc.insert(u);
E[u].out.insert(v);
TC[u][v] = false;
}
RT[u] = BreadthFirstTree<T>(this->G, u);
TC[u][u] = true;
for (const auto& v : RT[u].vertices())
for (const auto &v : RT[u].vertices())
TC[u][v] = true;
}
}
template<typename T>
bool Italiano<T>::query(const T& u, const T& v) {
template <typename T> bool Italiano<T>::query(const T &u, const T &v) {
return TC[u][v];
}
template<typename T>
void Italiano<T>::remove(const std::vector<std::pair<T, T>>& edges) {
for (const auto& [u, v] : edges) {
if (!this->G.adjList[u].contains(v)) continue;
template <typename T>
void Italiano<T>::remove(const std::vector<std::pair<T, T>> &edges) {
for (const auto &[u, v] : edges) {
if (!this->G.adjList[u].contains(v))
continue;
remove(u, v);
}
}
template<typename T>
void Italiano<T>::remove(const T& u, const T& v) {
template <typename T> void Italiano<T>::remove(const T &u, const T &v) {
this->G.remove(u, v);
E[u].out.erase(v);
E[v].inc.erase(u);
for (const auto& w : this->G.vertices()) {
if (!RT[w].adjList[u].contains(v)) continue;
for (const auto &w : this->G.vertices()) {
if (!RT[w].adjList[u].contains(v))
continue;
RT[w].adjList[u].erase(v);
if (E[v].inc.size() > 0) {
@@ -90,31 +89,31 @@ void Italiano<T>::remove(const T& u, const T& v) {
continue;
}
TC[w][v] = false;
for (const auto& c : E[v].out)
for (const auto &c : E[v].out)
H[w].push(c);
}
repairTrees();
}
template<typename T>
void Italiano<T>::repairTrees() {
for (const auto& w : this->G.vertices()) {
template <typename T> void Italiano<T>::repairTrees() {
for (const auto &w : this->G.vertices()) {
while (H[w].size() > 0) {
const auto& h = H[w].top();
const auto &h = H[w].top();
H[w].pop();
bool foundHook = false;
for (const auto& i : E[h].inc) {
for (const auto &i : E[h].inc) {
if (RT[w].adjList[w].contains(i)) {
RT[w].adjList[i].insert(h);
foundHook = true;
break;
}
}
if (foundHook) continue;
if (foundHook)
continue;
TC[w][h] = false;
for (const auto& o : E[h].out) {
for (const auto &o : E[h].out) {
if (RT[w].adjList[h].contains(o)) {
H[w].push(o);
}