文件名称:disjoint-set:Python的DisjointSet数据结构实现
文件大小:16KB
文件格式:ZIP
更新时间:2024-02-26 04:02:00
python algorithms python-library data-structures DatastructuresPython
不相交 于Python的 (又称联合查找数据结构或合并查找集)实现。 先决条件 唯一的要求是安装Python 3,您可以通过运行以下命令进行验证: $ python --version Python 3.7.2 安装 pip install disjoint-set 您可以通过运行以下命令来验证您正在运行最新的软件包版本: >> > import disjoint_set >> > disjoint_set . __version__ '0.7.1' 用法 >> > from disjoint_set import DisjointSet >> > ds = DisjointSet ()
【文件预览】:
disjoint-set-master
----setup.py(688B)
----poetry.lock(21KB)
----.gitignore(1KB)
----Makefile(383B)
----pyproject.toml(405B)
----.pre-commit-config.yaml(2KB)
----LICENSE(1KB)
----disjoint_set()
--------__init__.py(176B)
--------utils.py(376B)
--------py.typed(58B)
--------main.py(4KB)
----README.md(1KB)
----tests()
--------test_disjoint_set.py(2KB)
----.circleci()
--------config.yml(724B)
----tox.ini(387B)