markdown 图表文档

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 图表文档相关的知识,希望对你有一定的参考价值。

# Graphs

## Components

*  vertex: each node of the graph
*  edges: describe realationships between vertices

## Types

* Weigthed / Not Weigthed 
* Directed / Undirected  

## Representation 

### 1. Adjacency Matrix 
An adjacency matrix, once it has been formed can give us another piece of infromatio looking at rows and columns. *Adjacency Lists* which hive us the neighbours of a given node. For example if we want to know the node 4 neighbours we just look at row or column 4.
* * * 
* For an undirected graph the SPACE USAGE is
* ```n^2``` | For *n vertices*
### 2. Linked Lists storage
## Properties
* For an undirected graph the SPACE USAGE is
* ```n + e*2*2``` | For *n vertices* and *e vertices*

### Maximum total number of edges with *n* vertices
#### Undirected graph 
* ```(n*(n-1))/2```
#### Directed graph 
* ```(n*(n-1))```

以上是关于markdown 图表文档的主要内容,如果未能解决你的问题,请参考以下文章

c#markdown转换为word

魔众文档管理系统 v4.8.0 Markdown文档目录缺少,富文本视频增强

魔众文档管理系统 v4.8.0 Markdown文档目录缺少,富文本视频增强

魔众文档管理系统 v3.0.0 支持脑图图表富文本多种文档在线管理

工具学习_MarkDown

Markdown学习——Typora入门之常用操作语法及其快捷键