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

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-11 17:45
门头沟学院 Java
走吗:别怕 我以前也是这么认为 虽然一面就挂 但是颇有收获!
点赞 评论 收藏
分享
totoroyyw:千年老妖😂
投递华为等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务