⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 awgraph.h

📁 一本全面剖析C++数据结构算法的书籍
💻 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 + -