Format C++ codes in Clang-Format Style: Microsoft

This commit is contained in:
krahets
2023-04-14 03:44:02 +08:00
parent f8513455b5
commit 9c9c8b7574
46 changed files with 732 additions and 888 deletions
@@ -7,19 +7,15 @@
#include "../include/include.hpp"
/* 基于邻接表实现的无向图类 */
class GraphAdjList
{
public:
class GraphAdjList {
public:
// 邻接表,key: 顶点,value:该顶点的所有邻接顶点
unordered_map<Vertex *, vector<Vertex *>> adjList;
/* 在 vector 中删除指定节点 */
void remove(vector<Vertex *> &vec, Vertex *vet)
{
for (int i = 0; i < vec.size(); i++)
{
if (vec[i] == vet)
{
void remove(vector<Vertex *> &vec, Vertex *vet) {
for (int i = 0; i < vec.size(); i++) {
if (vec[i] == vet) {
vec.erase(vec.begin() + i);
break;
}
@@ -27,11 +23,9 @@ public:
}
/* 构造方法 */
GraphAdjList(const vector<vector<Vertex *>> &edges)
{
GraphAdjList(const vector<vector<Vertex *>> &edges) {
// 添加所有顶点和边
for (const vector<Vertex *> &edge : edges)
{
for (const vector<Vertex *> &edge : edges) {
addVertex(edge[0]);
addVertex(edge[1]);
addEdge(edge[0], edge[1]);
@@ -39,11 +33,12 @@ public:
}
/* 获取顶点数量 */
int size() { return adjList.size(); }
int size() {
return adjList.size();
}
/* 添加边 */
void addEdge(Vertex *vet1, Vertex *vet2)
{
void addEdge(Vertex *vet1, Vertex *vet2) {
if (!adjList.count(vet1) || !adjList.count(vet2) || vet1 == vet2)
throw invalid_argument("不存在顶点");
// 添加边 vet1 - vet2
@@ -52,8 +47,7 @@ public:
}
/* 删除边 */
void removeEdge(Vertex *vet1, Vertex *vet2)
{
void removeEdge(Vertex *vet1, Vertex *vet2) {
if (!adjList.count(vet1) || !adjList.count(vet2) || vet1 == vet2)
throw invalid_argument("不存在顶点");
// 删除边 vet1 - vet2
@@ -62,8 +56,7 @@ public:
}
/* 添加顶点 */
void addVertex(Vertex *vet)
{
void addVertex(Vertex *vet) {
if (adjList.count(vet))
return;
// 在邻接表中添加一个新链表
@@ -71,29 +64,25 @@ public:
}
/* 删除顶点 */
void removeVertex(Vertex *vet)
{
void removeVertex(Vertex *vet) {
if (!adjList.count(vet))
throw invalid_argument("不存在顶点");
// 在邻接表中删除顶点 vet 对应的链表
adjList.erase(vet);
// 遍历其他顶点的链表,删除所有包含 vet 的边
for (auto &[key, vec] : adjList)
{
remove(vec, vet);
for (auto &adj : adjList) {
remove(adj.second, vet);
}
}
/* 打印邻接表 */
void print()
{
void print() {
cout << "邻接表 =" << endl;
for (auto &adj : adjList)
{
for (auto &adj : adjList) {
const auto &key = adj.first;
const auto &vec = adj.second;
cout << key->val << ": ";
PrintUtil::printVector(vetsToVals(vec));
printVector(vetsToVals(vec));
}
}
};