I have a large graph that I am processing using JUNG. I was wondering if there JUNG provides a way to extract say a 2-hop neighborhood of a vertex (complete with all edges amongst themselves) into a separate graph?

link|improve this question

feedback

2 Answers

In JUNG 2.0 it is edu.uci.ics.jung.algorithms.filters.KNeighborhoodFilter

/** * A filter used to extract the k-neighborhood around one or more root node(s). * The k-neighborhood is defined as the subgraph induced by the set of * vertices that are k or fewer hops (unweighted shortest-path distance) * away from the root node. * * @author Danyel Fisher */

link|improve this answer
feedback

Try edu.uci.ics.jung.algorithms.connectivity.KNeighborhoodExtractor

link|improve this answer
That's from the now-very-out-of-date JUNG 1.x. The above answer is correct. – Joshua O'Madadhain Feb 8 at 23:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.