Visited Array in Dijkstra's

前端 未结 0 1730
长情又很酷
长情又很酷 2021-01-27 07:22

Why does this not work:

while (!pq.empty()) {
    int curr=pq.top().second; int l=pq.top().first;
    pq.pop();
    if (curr==n-1) break;
    for (auto a: adj[cur         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题