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

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

相关推荐

点赞 评论 收藏
分享
05-23 20:31
已编辑
武汉大学 Java
内向的柠檬精在研究求职打法:注意把武大标粗标大 本地你俩不是乱杀
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务