1. 程式人生 > >單源最短路徑問題-具有負邊值的圖

單源最短路徑問題-具有負邊值的圖

class ext text 最短路徑 處理 pat make 最短 true

借助隊列處理

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); }

單源最短路徑問題-具有負邊值的圖