Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for start_node (0.18 sec)

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

       * info.
       *
       * @throws IllegalArgumentException if {@code startNode} is not an element of the graph
       */
      public final Iterable<N> breadthFirst(N startNode) {
        return breadthFirst(ImmutableSet.of(startNode));
      }
    
      /**
       * Returns an unmodifiable {@code Iterable} over the nodes reachable from any of the {@code
       * startNodes}, in the order of a breadth-first traversal. This is equivalent to a breadth-first
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue May 30 20:12:45 GMT 2023
    - 19.8K bytes
    - Viewed (0)
Back to top