tgraboski/tarjan

A simple cycle-detection algorithm. Given an edge-edges adjacency list, it returns a list of cycles.

1.0.0 2016-01-20 23:44 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:47:28 UTC


README

#Tarjan

This is a small script for detecting cycles in a graph.

Input: an array of vertex-children lists: [[1,2,3], [5,6,7]] means vertex 0 points to vertices 1, 2, and 3, while vertex 1 points to vertices 5, 6, and 7.

Output: an array of cycles: [[2,3,5,2], [5,6,5], [3,7,9,3]] contains three cycles. The first goes from 2 to 3 to 5 back to 2.