simple_graph:simple-graph模块包含图形的基本功能

时间:2024-04-25 14:43:06
【文件属性】:

文件名称:simple_graph:simple-graph模块包含图形的基本功能

文件大小:9KB

文件格式:ZIP

更新时间:2024-04-25 14:43:06

Python

介绍 simple-graph模块包含图形的基本功能。 概念 图是一种用于容纳一组对象的结构,其中一些对象对是连接在一起的。 图包含两个部分:顶点和边。 我们在此项目中同时考虑了有向边和无向边。 如果边缘是无向的,则将该图称为无向图,另一方面,将其称为有向图。 执照 simple-graph是一个免费软件。 有关全文,请参见文件LICENSE。 安装 pip install simple - graph 或更新 pip install - - upgrade simple - graph 用法 基本操作 from simple_graph import Graph G = Graph () G . add_edge ( 1 , 2 ) print ( G . has_edge ( 1 , 2 )) 输出: True G = Graph ({ 0 : [ 1 , 2 ], 1 :


【文件预览】:
simple_graph-master
----.gitignore(77B)
----LICENSE(1KB)
----README.md(1KB)
----tests()
--------__init__.py(0B)
--------test_graph.py(9KB)
----simple_graph()
--------__init__.py(20B)
--------edges.py(3KB)
--------graph.py(12KB)
--------vertices.py(887B)

网友评论