Tarjan's algorithm is a linear-time algorithm for finding all strongly-connected components of a directed graph.

learn more… | top users | synonyms

0
votes
1answer
43 views

About tarjan's algorithm for finding scc

I'm a senior student learing informatics olympiad on algorithms, and this is my first question on stackoverflow. In tarjan's dfs search getting lowlink(u): low[u]=min(low[u],low[v]) (v isn't ...
14
votes
3answers
470 views

Functional implementation of Tarjan's Strongly Connected Components algorithm

I went ahead and implemented the textbook version of Tarjan's SCC algorithm in Scala. However, I dislike the code - it is very imperative/procedural with lots of mutating states and book-keeping ...
1
vote
1answer
96 views

Cross link in Tarjan's algorithm

I'm reading Tarjan's paper on scc. In the paper, the lowlink of a given vertex is defined as: LOWLINK (v) is the smallest vertex which is in the same component as v and is reachable by ...
1
vote
1answer
370 views

What does lowlink mean in Tarjan's SCC algorithm?

I was reading the code in the following link http://www.cosc.canterbury.ac.nz/tad.takaoka/alg/graphalg/sc.txt I kept bumping into the word "low-link", and I have no idea what it means. I know this is ...
2
votes
2answers
2k views

How do I learn Tarjan's algorithm?

I have been trying to learn Tarjan's algorithm from Wikipedia for 3 hours now, but I just can't make head or tail of it. :( ...
0
votes
1answer
539 views

Trying to run the java implementation of Tarjan algorithm

I am trying to run the Tarjan java implementation from wikipedia. My final goal is to inject a few println at specifc points, this will allow me to understand further the code. What have I done so ...
9
votes
1answer
3k views

Tarjan cycle detection help C#

Here is a working C# implementation of tarjan's cycle detection. The algorithm is found here: http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm public class ...
12
votes
1answer
2k views

Tarjan's strongly connected components algorithm in python not working

I implemented the Tarjan's strongly connected components algorithm, according to wikipedia, in Python, but it isn't working. The algorithm is quite short and I cannot find any difference, so I cannot ...
8
votes
1answer
2k views

Iterative version of a recursive algorithm is slower

I'm trying to implement an iterative version of Tarjan's strongly connected components (SCCs), reproduced here for your convenience (source: ...