Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add spanning tree #135

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions cyaron/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,33 @@ def add_edge(self, x, y, **kwargs):
if not self.directed and x != y:
self.__add_edge(y, x, weight)

def to_tree(self, root = 1, *, container = list):
"""to_tree(self, root, *, container) -> list[tuple[int, int]]
Return a spanning tree of the graph.
By default, return the DFS spanning tree generated from node 1 as the root.
int root = 1 -> starting from `root` to generate.
container = list -> use list to simulate a stack by default.
You can pass in a container class that implements `pop` and `append` methods.
Additionally, it needs the method `__bool__` to indicate whether the container is non-empty.
For example, pass in a heap to implement a minimum spanning tree.
"""
tree = []
vis = set()
q = container()
q.append((0, root, 0))
while q:
_, u, fa = q.pop()
if u in vis:
continue
vis.add(u)
tree.append((fa, u))
for edge in self.edges[u]:
v, w = edge.end, edge.weight
if v in vis:
continue
q.append((w, v, u))
return tree

@staticmethod
def chain(point_count, **kwargs):
"""chain(point_count, **kwargs) -> Graph
Expand Down