码迷,mamicode.com
首页 > 其他好文 > 详细

单源最短路径问题-具有负边值的图

时间:2017-07-30 12:48:59      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:each   deque   ext   creat   make   weight   not   isp   queue   

借助队列处理

void Unweighted(Table T) {
    Queue Q;
    Vertext V, W;
    Q = CreateQueue(NumVertex);
    MakeEmpty(Q);
    Enqueue(S, Q);

    while (!IsEmpty(Q)) {
        V = Dequeue(Q);
        T[V].Know = True;

        for each W adjacent to V
            if (T[V].Dist + Cvw < T[W].Dist) {
                T[W].Dist = T[V].Dist + Cvw;
                T[W].Path = V;
                if (W is not in Q)
                    Enqueue(W, Q);
            }
    }

    DisPoseQueue(Q);
}

 

单源最短路径问题-具有负边值的图

标签:each   deque   ext   creat   make   weight   not   isp   queue   

原文地址:http://www.cnblogs.com/m2492565210/p/7258651.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!