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

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 福建

相关推荐

面试摇了我吧:啊哈哈面试提前五个小时发,点击不能参加就是放弃
点赞 评论 收藏
分享
头像
11-09 12:17
清华大学 C++
out11Man:小丑罢了,不用理会
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务