Class Tarjan<T>


  • public class Tarjan<T>
    extends java.lang.Object
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      class  Tarjan.Node  
    • Constructor Summary

      Constructors 
      Constructor Description
      Tarjan()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static <T> java.util.Collection<? extends java.util.Collection<T>> tarjan​(java.util.Map<T,​? extends java.util.Collection<T>> graph)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Tarjan

        public Tarjan()
    • Method Detail

      • tarjan

        public static <T> java.util.Collection<? extends java.util.Collection<T>> tarjan​(java.util.Map<T,​? extends java.util.Collection<T>> graph)