Uses of Class
dev.nm.graph.type.VertexTree
-
Packages that use VertexTree Package Description dev.nm.graph.type -
-
Uses of VertexTree in dev.nm.graph.type
Methods in dev.nm.graph.type that return VertexTree Modifier and Type Method Description VertexTree<T>
VertexTree. addEdge(Arc<VertexTree<T>> e)
VertexTree<T>
VertexTree. addVertex(VertexTree<T> v)
VertexTree<T>
VertexTree. parent(VertexTree<T> v)
VertexTree<T>
VertexTree. removeEdge(Arc<VertexTree<T>> e)
VertexTree<T>
VertexTree. removeVertex(VertexTree<T> v)
VertexTree<T>
VertexTree. root()
Methods in dev.nm.graph.type that return types with arguments of type VertexTree Modifier and Type Method Description Set<VertexTree<T>>
VertexTree. children(VertexTree<T> v)
Set<Arc<VertexTree<T>>>
VertexTree. edges()
Set<Arc<VertexTree<T>>>
VertexTree. edges(VertexTree<T> v)
Set<Arc<VertexTree<T>>>
VertexTree. incomingArcs(VertexTree<T> v)
Set<Arc<VertexTree<T>>>
VertexTree. outgoingArcs(VertexTree<T> v)
Set<VertexTree<T>>
VertexTree. parents(VertexTree<T> v)
RootedTree<VertexTree<T>,Arc<VertexTree<T>>>
VertexTree. subTree(VertexTree<T> v)
RootedTree<VertexTree<T>,Arc<VertexTree<T>>>
VertexTree. subTree(VertexTree<T> v)
Set<VertexTree<T>>
VertexTree. vertices()
Methods in dev.nm.graph.type with parameters of type VertexTree Modifier and Type Method Description VertexTree<T>
VertexTree. addVertex(VertexTree<T> v)
Set<VertexTree<T>>
VertexTree. children(VertexTree<T> v)
int
VertexTree. depth(VertexTree<T> v)
Set<Arc<VertexTree<T>>>
VertexTree. edges(VertexTree<T> v)
static <T> List<Integer>
VertexTree. findPosition(VertexTree<T> node)
Finds the position of a node from its tree root recursively.Set<Arc<VertexTree<T>>>
VertexTree. incomingArcs(VertexTree<T> v)
Set<Arc<VertexTree<T>>>
VertexTree. outgoingArcs(VertexTree<T> v)
VertexTree<T>
VertexTree. parent(VertexTree<T> v)
Set<VertexTree<T>>
VertexTree. parents(VertexTree<T> v)
VertexTree<T>
VertexTree. removeVertex(VertexTree<T> v)
RootedTree<VertexTree<T>,Arc<VertexTree<T>>>
VertexTree. subTree(VertexTree<T> v)
int
VertexTree. topologicalOrder(VertexTree<T> v)
Method parameters in dev.nm.graph.type with type arguments of type VertexTree Modifier and Type Method Description VertexTree<T>
VertexTree. addEdge(Arc<VertexTree<T>> e)
VertexTree<T>
VertexTree. removeEdge(Arc<VertexTree<T>> e)
-