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

Method push

src/class199/Code04_RingRoad1.java:42–48  ·  view source on GitHub ↗
(int u, int status, int fa, int e)

Source from the content-addressed store, hash-verified

40 public static int stacksize, u, status, fa, e;
41
42 public static void push(int u, int status, int fa, int e) {
43 stau[stacksize] = u;
44 stas[stacksize] = status;
45 staf[stacksize] = fa;
46 stae[stacksize] = e;
47 stacksize++;
48 }
49
50 public static void pop() {
51 --stacksize;

Callers 2

dfs2Method · 0.95
dpOnTree2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected