QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
|
Go to the documentation of this file.
27 if ( startPointIdx < 0 || startPointIdx >= source->
vertexCount() )
33 QVector< double > *result =
nullptr;
40 result =
new QVector<double>();
44 result->insert( result->begin(), source->
vertexCount(), std::numeric_limits<double>::infinity() );
45 ( *result )[ startPointIdx ] = 0.0;
50 resultTree->insert( resultTree->begin(), source->
vertexCount(), -1 );
55 QMultiMap< double, int > not_begin;
56 QMultiMap< double, int >::iterator it;
58 not_begin.insert( 0.0, startPointIdx );
60 while ( !not_begin.empty() )
62 it = not_begin.begin();
63 const double curCost = it.key();
64 const int curVertex = it.value();
65 not_begin.erase( it );
69 for (
const int edgeId : outgoingEdges )
72 const double cost = arc.
cost( criterionNum ).toDouble() + curCost;
74 if ( cost < ( *result )[ arc.
toVertex()] )
79 ( *resultTree )[ arc.
toVertex()] = edgeId;
81 not_begin.insert( cost, arc.
toVertex() );
99 QVector<int> source2result( tree.size(), -1 );
102 source2result[ startVertexIdx ] = treeResult->
addVertex( source->
vertex( startVertexIdx ).
point() );
106 if ( tree[ i ] != -1 )
115 if ( tree[ i ] != -1 )
Mathematical graph representation.
QgsGraphEdgeIds outgoingEdges() const
Returns outgoing edge ids, i.e.
QgsPointXY point() const
Returns point associated with graph vertex.
This class implements a graph edge.
int addVertex(const QgsPointXY &pt)
Add a vertex to the graph.
QVector< QVariant > strategies() const
Returns array of available strategies.
int fromVertex() const
Returns the index of the vertex at the start of this edge.
const QgsGraphVertex & vertex(int idx) const
Returns the vertex at the given index.
QList< int > QgsGraphEdgeIds
const QgsGraphEdge & edge(int idx) const
Returns the edge at the given index.
QVariant cost(int strategyIndex) const
Returns edge cost calculated using specified strategy.
int toVertex() const
Returns the index of the vertex at the end of this edge.
int vertexCount() const
Returns number of graph vertices.
static QgsGraph * shortestTree(const QgsGraph *source, int startVertexIdx, int criterionNum)
Returns shortest path tree with root-node in startVertexIdx.
int addEdge(int fromVertexIdx, int toVertexIdx, const QVector< QVariant > &strategies)
Add an edge to the graph, going from the fromVertexIdx to toVertexIdx.
static void dijkstra(const QgsGraph *source, int startVertexIdx, int criterionNum, QVector< int > *resultTree=nullptr, QVector< double > *resultCost=nullptr)
Solve shortest path problem using Dijkstra algorithm.