Learn R Programming

igraph (version 1.3.5)

to_prufer: Convert a tree graph to its Prufer sequence

Description

to_prufer converts a tree graph into its Prufer sequence.

Usage

to_prufer(graph)

Value

The Prufer sequence of the graph, represented as a numeric vector of vertex IDs in the sequence.

Arguments

graph

The graph to convert to a Prufer sequence

Details

The Prufer sequence of a tree graph with n labeled vertices is a sequence of n-2 numbers, constructed as follows. If the graph has more than two vertices, find a vertex with degree one, remove it from the tree and add the label of the vertex that it was connected to to the sequence. Repeat until there are only two vertices in the remaining graph.

See Also

make_from_prufer to construct a graph from its Prufer sequence

Examples

Run this code

g <- make_tree(13, 3)
to_prufer(g)

Run the code above in your browser using DataLab