*[https://stackoverflow.com/questions/6643076/tarjan-cycle-detection-help-c#sca Implementation of Tarjan's Algorithm in .NET]
*[https://github.com/danielrbradley/CycleDetection Implementation of Tarjan's Algorithm in .NET (GitHub)]
*[http://www.vacilando.org/article/php-implementation-tarjans-cycle-detection-algorithm Implementation of Tarjan's Algorithm in PHP]
*[https://github.com/bwesterb/py-tarjan/ Implementation of Tarjan's Algorithm in Python]
*[https://gist.github.com/1440602 Implementation of Tarjan's Algorithm in Javascript]
*[http://clj-me.cgrand.net/2013/03/18/tarjans-strongly-connected-components-algorithm/ Implementation of Tarjan's Algorithm in Clojure]
*[https://gist.github.com/BhavikDhandhalya/9b9b60efec7c27d256b66c35450f0072/ Implementation of Tarjan's Algorithm in C++]
*[https://github.com/pallas/libite/blob/master/tarjan.cc Iterative version of Tarjan's Algorithm in C++]
*[https://github.com/t1/graph/blob/master/src/main/java/com/github/t1/graph/StronglyConnectedComponentsFinder.java Implementation of Tarjan's Algorithm in Java]
*[https://github.com/looplab/tarjan Implementation of Tarjan's Algorithm in Go]
*[https://gist.github.com/dopefishh/59fef70eb405997fa71fb255ad18000d Implementation of Tarjan's Algorithm in [[Clean (programming language)|Clean]]]