📄 agraph.h
字号:
// file agraph.h
// adjacency matrix representation of a graph
// initial version
#ifndef AdjacencyGraph_
#define AdjacencyGraph_
#include "awgraph.h"
class AdjacencyGraph : public AdjacencyWGraph<int>
{
public:
AdjacencyGraph(int Vertices = 10)
: AdjacencyWGraph<int>(Vertices, 0) {}
AdjacencyGraph& Add(int i, int j)
{AdjacencyWGraph<int>::Add(i,j,1);
return *this;}
AdjacencyGraph& Delete(int i, int j)
{AdjacencyWGraph<int>::Delete(i,j);
return *this;}
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -