优先队列优化的dijsktra完整代码+路径记录

#include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
#include<vector>
using namespace std;
#define MAXV 500
#define inf 0x0fffffff
int V,E;

struct edge
{
 int to,cost;
 edge(int a,int b)
 {
  to=a;
  cost=b;
 }
};


vector<edge>G[MAXV];
typedef pair<int,int>P;  //最短距离 编号
int d[MAXV];
int prev[MAXV];

class cmp
{
public:
 bool operator()(P a,P b)
 {
  return a.first>b.first;
 }
};

void dijsktra(int s)
{
 priority_queue<P,vector<P>,cmp>que;
 memset(prev,-1,sizeof(prev));
 int i;
 for(i=0;i<MAXV;i++)
  d[i]=inf;
 d[s]=0;
 que.push(P(0,s));
 while(!que.empty())
 {
  P p=que.top();
  que.pop();
  int v=p.second;
  if(p.first>d[v])
   continue;
  for(i=0;i<G[v].size();i++)
  {
   edge e=G[v][i];
   if(d[e.to]>d[v]+e.cost)
   {
    d[e.to]=d[v]+e.cost;
    prev[e.to]=v;
    que.push(P(d[e.to],e.to));
   }
  }
 }
}
void path(int t)
{
 vector<int>path;
 while(t!=-1)
 {
  path.push_back(t);
  t=prev[t];
 }
 reverse(path.begin(),path.end());
 vector<int>::iterator ite;
 for(ite=path.begin();ite!=path.end();ite++)
  cout<<*ite<<" ";
 cout<<endl;
}


int main()
{
 freopen("C:\\1.txt","r",stdin);
 cin>>V>>E;
 int i;
 for(i=0;i<E;i++)
 {
  int f,t,c;
  cin>>f>>t>>c;
  G[f].push_back(edge(t,c));
  G[t].push_back(edge(f,c));
 }
 vector<edge>::iterator ite;
 for(i=0;i<V;i++)
  for(ite=G[i].begin();ite!=G[i].end();ite++)
   cout<<i<<" "<<ite->to<<" "<<ite->cost<<endl;
 dijsktra(0);
 for(i=0;i<V;i++)
  cout<<d[i]<<endl;
 path(6);
 return 0;
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值