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