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

@@ -8,35 +8,36 @@
namespace graph {
template<typename T>
class SCC : public Digraph<T> {
template <typename T> class SCC : public Digraph<T> {
public:
SCC() = default;
SCC(std::unordered_map<T, std::unordered_set<T>> G, T id)
: Digraph<T>(G), id(id) { normalize(); }
: Digraph<T>(G), id(id) {
normalize();
}
SCC(Digraph<T> G, T id) : id(id) { normalize(); }
// Return true if u is part of this SCC
bool contains(const T& u) const;
bool contains(const T &u) const;
// Representative vertex of this SCC
T id{};
//
//
std::unordered_map<T, std::unordered_set<T>> neighboorList;
bool operator==(const SCC& o) const;
bool operator==(const SCC &o) const;
private:
// Erase all edges that include vertices outside this SCC
void normalize();
};
template<typename T>
void SCC<T>::normalize() {
for (const auto& u : this->vertices()) {
for (const auto& v : this->adjList[u]) {
template <typename T> void SCC<T>::normalize() {
for (const auto &u : this->vertices()) {
for (const auto &v : this->adjList[u]) {
if (!this->contains(v)) {
this->adjList[u].erase(v);
this->adjList.erase(v);
@@ -46,19 +47,16 @@ void SCC<T>::normalize() {
}
}
template<typename T>
bool SCC<T>::contains(const T& u) const {
template <typename T> bool SCC<T>::contains(const T &u) const {
return this->adjList.count(u);
}
template<typename T>
bool SCC<T>::operator==(const SCC& o) const {
template <typename T> bool SCC<T>::operator==(const SCC &o) const {
return id == o.id;
}
template<typename T>
struct HashSCC {
std::size_t operator()(const SCC<T>& C) const {
template <typename T> struct HashSCC {
std::size_t operator()(const SCC<T> &C) const {
return static_cast<std::size_t>(C.id);
}
};