邻接表实现图(双向或无向)

struct Edge {
    int to;
    int l;
    Edge(int x,int y):to(x),l(y) {}
};
vector<Edge> graph[Max];
for(int i=0; i<m; i++) {
            int from,to,l;
            cin>>from>>to>>l;
            graph[from].emplace_back(Edge(to,l));
            graph[to].emplace_back(Edge(from,l));
        }
全部评论
const int Max=100; vector<int> graph[Max]; while(m--) { int x,y; cin>>x>>y; graph[x].emplace_back(y); indegree[y]++; }
点赞 回复 分享
发布于 2022-10-14 16:12 福建

相关推荐

10-15 15:00
潍坊学院 golang
跨考小白:这又不是官方
投递拼多多集团-PDD等公司10个岗位
点赞 评论 收藏
分享
10-07 23:57
已编辑
电子科技大学 Java
八街九陌:博士?客户端?开发?啊?
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务