Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for depthFirstPreOrder (0.06 seconds)

  1. android/guava/src/com/google/common/graph/Traverser.java

       * Iterables.limit(Traverser.forGraph(graph).depthFirstPreOrder(node), maxNumberOfNodes);
       * }
       *
       * <p>See <a href="https://en.wikipedia.org/wiki/Depth-first_search">Wikipedia</a> for more info.
       *
       * @throws IllegalArgumentException if {@code startNode} is not an element of the graph
       */
      public final Iterable<N> depthFirstPreOrder(N startNode) {
        return depthFirstPreOrder(ImmutableSet.of(startNode));
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 19.3K bytes
    - Click Count (0)
Back to Top