Example #1
0
 public static <N, R> R dfsFromNode(
     @NotNull N node,
     @NotNull Neighbors<N> neighbors,
     @NotNull Visited<N> visited,
     @NotNull NodeHandler<N, R> handler) {
   doDfs(node, neighbors, visited, handler);
   return handler.result();
 }
Example #2
0
 public static <N, R> R dfs(
     @NotNull Collection<N> nodes,
     @NotNull Neighbors<N> neighbors,
     @NotNull Visited<N> visited,
     @NotNull NodeHandler<N, R> handler) {
   for (N node : nodes) {
     doDfs(node, neighbors, visited, handler);
   }
   return handler.result();
 }