MCPcopy Create free account
hub / github.com/algorithmzuo/algorithm-journey / addEdge

Method addEdge

src/class196/Code06_Riddle1.java:59–63  ·  view source on GitHub ↗
(int u, int v)

Source from the content-addressed store, hash-verified

57 }
58
59 public static void addEdge(int u, int v) {
60 nxt[++cntg] = head[u];
61 to[cntg] = v;
62 head[u] = cntg;
63 }
64
65 // 前后缀优化建图
66 public static void link() {

Callers 2

linkMethod · 0.95
mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected