hashCycle metodu
Graph'ın tree olduğunu anlamak için şöyle yaparız
Graph'ın tree olduğunu anlamak için şöyle yaparız
Function<Graph<Integer>, Double> targetFunction = g -> {
boolean isConnected = Graphs.reachableNodes(g, g.nodes().iterator().next())
.equals(g.nodes());
return isConnected && Graphs.hasCycle(g);
};
Hiç yorum yok:
Yorum Gönder