邻接表|SPFA

邻接表简易定义
//定义简易邻接表

struct edge {
    int to,cost;
};
vector  adjmap[maxn];

int dis[maxn];
int vis[maxn];
int path[maxn];
int inque[maxn];

SPFA不完整实现

bool SPFA(int s,int totalnode) {
    queue q;
    dis[s] = 0;

    q.push(s);
    inque[s] = 1;
    //统计入队次数
    while(!q.empty()) {
        int u = q.front();
        q.pop();
        vis[u] = 0;
        //队头元素出队 消除标记
        //遍历定点u邻接表
        for(int v=0; vtotalnode) {
                        //超过如对次数上限 说明有负数环
                        return false;
                    }
                }
            }
        }
    }
    return true;
}

你可能感兴趣的:(邻接表|SPFA)