| k_shortest_paths | R Documentation |
k shortest paths between two verticesFinds the k shortest paths between the given source and target
vertex in order of increasing length. Currently this function uses
Yen's algorithm.
k_shortest_paths(
graph,
from,
to,
...,
k,
weights = NULL,
mode = c("out", "in", "all", "total")
)
graph |
The input graph. |
from |
The source vertex of the shortest paths. |
to |
The target vertex of the shortest paths. |
... |
These dots are for future extensions and must be empty. |
k |
The number of paths to find. They will be returned in order of increasing length. |
weights |
Possibly a numeric vector giving edge weights. If this is
|
mode |
Character constant, gives whether the shortest paths to or from
the given vertices should be calculated for directed graphs. If |
A named list with two components is returned:
vpaths |
The list of |
epaths |
The list of |
igraph_get_k_shortest_paths().
Yen, Jin Y.: An algorithm for finding shortest routes from all source nodes to a given destination in general networks. Quarterly of Applied Mathematics. 27 (4): 526–530. (1970) \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1090/qam/253822")}
shortest_paths(), all_shortest_paths()
Other structural.properties:
bfs(),
component_distribution(),
connect(),
constraint(),
coreness(),
degree(),
dfs(),
distance_table(),
edge_density(),
feedback_arc_set(),
girth(),
is_acyclic(),
is_dag(),
is_matching(),
knn(),
reciprocity(),
subcomponent(),
subgraph(),
topo_sort(),
transitivity(),
unfold_tree(),
which_multiple(),
which_mutual()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.