SparseGraph6#
Functions for reading and writing graphs in the graph6 or sparse6 file formats.
According to the author of these formats,
graph6 and sparse6 are formats for storing undirected graphs in a compact manner, using only printable ASCII characters. Files in these formats have text type and contain one line per graph.
graph6 is suitable for small graphs, or large dense graphs. sparse6 is more space-efficient for large sparse graphs.
Graph6#
用于读取和写入 graph6 格式图形的函数。
graph6 文件格式适用于小型图或大型密集图。对于大型稀疏图,请使用 sparse6 格式。
更多信息,请参阅 graph6 主页。
|
读取以graph6格式表示的简单无向图的字节数据。 |
|
读取路径中以graph6格式表示的简单无向图。 |
|
将一个简单的无向图转换为graph6格式的字节。 |
|
将一个简单的无向图写入graph6格式的路径。 |
Sparse6#
用于读取和写入*sparse6*格式图形的函数。
*sparse6*文件格式是一种空间效率高的格式,适用于大型稀疏图。对于小型图或大型稠密图,请使用*graph6*文件格式。
更多信息,请参阅 `sparse6`_官方页面。
|
从字符串中读取以sparse6格式表示的无向图。 |
|
从路径读取以sparse6格式表示的无向图。 |
|
将无向图转换为sparse6格式的字节。 |
|
将图 G 以 sparse6 格式写入指定路径。 |