Python有向图的使用
时间: 2023-12-25 17:27:52 浏览: 67
以下是Python使用有向图的方法和步骤:
1.安装networkx库
```shell
pip install networkx
```
2.导入networkx库
```python
import networkx as nx
```
3.创建有向图
```python
G = nx.DiGraph()
```
4.添加节点
```python
G.add_node(1)
G.add_nodes_from([2, 3, 4])
```
5.添加边
```python
G.add_edge(1, 2)
G.add_edges_from([(1, 3), (2, 4), (3, 4)])
```
6.绘制有向图
```python
import matplotlib.pyplot as plt
nx.draw(G, with_labels=True)
plt.show()
```
以上是Python使用有向图的基本方法和步骤。
阅读全文