Shortest-Path Search Task: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
m (Text replacement - "]] ** " to "]]. ** ")
m (Text replacement - "<P> " to "<P> ")
 
Line 20: Line 20:
=== 2013 ===
=== 2013 ===
* http://en.wikipedia.org/wiki/Shortest_path_problem
* http://en.wikipedia.org/wiki/Shortest_path_problem
** In [[graph theory]], the '''shortest path problem</B> is the problem of finding a [[path (graph theory)|path]] between two [[vertex (graph theory)|vertice]]s (or nodes) in a [[graph (mathematics)|graph]] such that the sum of the [[Glossary of graph theory#Weighted graphs and networks|weights]] of its constituent edges is minimized.        <P>             This is analogous to the problem of finding the shortest path between two intersections on a road map: the graph's vertices correspond to intersections and the edges correspond to road segments, each weighted by the length of its road segment.
** In [[graph theory]], the '''shortest path problem</B> is the problem of finding a [[path (graph theory)|path]] between two [[vertex (graph theory)|vertice]]s (or nodes) in a [[graph (mathematics)|graph]] such that the sum of the [[Glossary of graph theory#Weighted graphs and networks|weights]] of its constituent edges is minimized.        <P> This is analogous to the problem of finding the shortest path between two intersections on a road map: the graph's vertices correspond to intersections and the edges correspond to road segments, each weighted by the length of its road segment.


<BR>
<BR>
* http://en.wikipedia.org/wiki/Shortest_path_problem#Definition
* http://en.wikipedia.org/wiki/Shortest_path_problem#Definition
** The shortest path problem can be defined for [[Graph (mathematics)|graphs]] whether [[Graph_(mathematics)#Undirected_graph|undirected]], [[Graph_(mathematics)#Directed_graph|directed]], or [[Graph_(mathematics)#Mixed_graph|mixed]]. It is defined here for undirected graphs; for directed graphs the definition of path requires that consecutive vertices be connected by an appropriate directed edge.        <P>            Two vertices are adjacent when they are both incident to a common edge.        <P>             A [[Path (graph theory)|path]] in an undirected graph is a [[sequence]] of vertices <math>P = (v_1, v_2, \ldots, v_n ) \in V \times V \times \ldots \times V</math> such that <math>v_i</math> is adjacent to <math>v_{i+1}</math> for <math>1 \leq i < n</math>.        <P>          Such a path <math>P</math> is called a path of length <math>n</math> from <math>v_1</math> to <math>v_n</math>. (The <math>v_i</math> are variables; their numbering here relates to their position in the sequence and needs not to relate to any canonical labeling of the vertices.)        <P>        Let <math>e_{i, j}</math> be the edge incident to both <math>v_i</math> and <math>v_j</math>.        <P>          Given a [[Function (mathematics)#Real-valued functions|real-valued]] weight function <math>f: E \rightarrow \mathbb{R}</math>, and an undirected (simple) graph <math>G</math>, the shortest path from <math>v</math> to <math>v'</math> is the path <math>P = (v_1, v_2, \ldots, v_n )</math> (where <math>v_1 = v</math> and <math>v_n = v'</math>)  that over all possible <math>n</math> [[minimize]]s the sum <math>\sum_{i =1}^{n-1} f(e_{i, i+1}).</math>        <P>        When the graph is unweighted or <math>f: E \rightarrow \{c\},\ c \in \mathbb{R}^+</math>, this is equivalent to finding the path with fewest edges.        <P>            The problem is also sometimes called the '''single-pair shortest path problem</B>, to distinguish it from the following variations:
** The shortest path problem can be defined for [[Graph (mathematics)|graphs]] whether [[Graph_(mathematics)#Undirected_graph|undirected]], [[Graph_(mathematics)#Directed_graph|directed]], or [[Graph_(mathematics)#Mixed_graph|mixed]]. It is defined here for undirected graphs; for directed graphs the definition of path requires that consecutive vertices be connected by an appropriate directed edge.        <P>            Two vertices are adjacent when they are both incident to a common edge.        <P> A [[Path (graph theory)|path]] in an undirected graph is a [[sequence]] of vertices <math>P = (v_1, v_2, \ldots, v_n ) \in V \times V \times \ldots \times V</math> such that <math>v_i</math> is adjacent to <math>v_{i+1}</math> for <math>1 \leq i < n</math>.        <P>          Such a path <math>P</math> is called a path of length <math>n</math> from <math>v_1</math> to <math>v_n</math>. (The <math>v_i</math> are variables; their numbering here relates to their position in the sequence and needs not to relate to any canonical labeling of the vertices.)        <P>        Let <math>e_{i, j}</math> be the edge incident to both <math>v_i</math> and <math>v_j</math>.        <P>          Given a [[Function (mathematics)#Real-valued functions|real-valued]] weight function <math>f: E \rightarrow \mathbb{R}</math>, and an undirected (simple) graph <math>G</math>, the shortest path from <math>v</math> to <math>v'</math> is the path <math>P = (v_1, v_2, \ldots, v_n )</math> (where <math>v_1 = v</math> and <math>v_n = v'</math>)  that over all possible <math>n</math> [[minimize]]s the sum <math>\sum_{i =1}^{n-1} f(e_{i, i+1}).</math>        <P>        When the graph is unweighted or <math>f: E \rightarrow \{c\},\ c \in \mathbb{R}^+</math>, this is equivalent to finding the path with fewest edges.        <P>            The problem is also sometimes called the '''single-pair shortest path problem</B>, to distinguish it from the following variations:
*** The '''single-source shortest path problem</B>, in which we have to find shortest paths from a source vertex ''v'' to all other vertices in the graph.
*** The '''single-source shortest path problem</B>, in which we have to find shortest paths from a source vertex ''v'' to all other vertices in the graph.
*** The '''single-destination shortest path problem</B>, in which we have to find shortest paths from all vertices in the directed graph to a single destination vertex ''v''. This can be reduced to the single-source shortest path problem by reversing the arcs in the directed graph.
*** The '''single-destination shortest path problem</B>, in which we have to find shortest paths from all vertices in the directed graph to a single destination vertex ''v''. This can be reduced to the single-source shortest path problem by reversing the arcs in the directed graph.

Latest revision as of 18:19, 2 June 2024

A Shortest-Path Search Task is a optimal-path search task that requires shortest paths (in a graph).



References

2013

  • http://en.wikipedia.org/wiki/Shortest_path_problem
    • In graph theory, the shortest path problem is the problem of finding a path between two vertices (or nodes) in a graph such that the sum of the weights of its constituent edges is minimized.

      This is analogous to the problem of finding the shortest path between two intersections on a road map: the graph's vertices correspond to intersections and the edges correspond to road segments, each weighted by the length of its road segment.


  • http://en.wikipedia.org/wiki/Shortest_path_problem#Definition
    • The shortest path problem can be defined for graphs whether undirected, directed, or mixed. It is defined here for undirected graphs; for directed graphs the definition of path requires that consecutive vertices be connected by an appropriate directed edge.

      Two vertices are adjacent when they are both incident to a common edge.

      A path in an undirected graph is a sequence of vertices [math]\displaystyle{ P = (v_1, v_2, \ldots, v_n ) \in V \times V \times \ldots \times V }[/math] such that [math]\displaystyle{ v_i }[/math] is adjacent to [math]\displaystyle{ v_{i+1} }[/math] for [math]\displaystyle{ 1 \leq i \lt n }[/math].

      Such a path [math]\displaystyle{ P }[/math] is called a path of length [math]\displaystyle{ n }[/math] from [math]\displaystyle{ v_1 }[/math] to [math]\displaystyle{ v_n }[/math]. (The [math]\displaystyle{ v_i }[/math] are variables; their numbering here relates to their position in the sequence and needs not to relate to any canonical labeling of the vertices.)

      Let [math]\displaystyle{ e_{i, j} }[/math] be the edge incident to both [math]\displaystyle{ v_i }[/math] and [math]\displaystyle{ v_j }[/math].

      Given a real-valued weight function [math]\displaystyle{ f: E \rightarrow \mathbb{R} }[/math], and an undirected (simple) graph [math]\displaystyle{ G }[/math], the shortest path from [math]\displaystyle{ v }[/math] to [math]\displaystyle{ v' }[/math] is the path [math]\displaystyle{ P = (v_1, v_2, \ldots, v_n ) }[/math] (where [math]\displaystyle{ v_1 = v }[/math] and [math]\displaystyle{ v_n = v' }[/math]) that over all possible [math]\displaystyle{ n }[/math] minimizes the sum [math]\displaystyle{ \sum_{i =1}^{n-1} f(e_{i, i+1}). }[/math]

      When the graph is unweighted or [math]\displaystyle{ f: E \rightarrow \{c\},\ c \in \mathbb{R}^+ }[/math], this is equivalent to finding the path with fewest edges.

      The problem is also sometimes called the single-pair shortest path problem, to distinguish it from the following variations:

      • The single-source shortest path problem, in which we have to find shortest paths from a source vertex v to all other vertices in the graph.
      • The single-destination shortest path problem, in which we have to find shortest paths from all vertices in the directed graph to a single destination vertex v. This can be reduced to the single-source shortest path problem by reversing the arcs in the directed graph.
      • The all-pairs shortest path problem, in which we have to find shortest paths between every pair of vertices v, v' in the graph.
    • These generalizations have significantly more efficient algorithms than the simplistic approach of running a single-pair shortest path algorithm on all relevant pairs of vertices.