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

Method push

src/class184/Code01_Capital1.java:57–63  ·  view source on GitHub ↗
(int u, int f, int rt, int e)

Source from the content-addressed store, hash-verified

55 public static int stacksize;
56
57 public static void push(int u, int f, int rt, int e) {
58 stack[stacksize][0] = u;
59 stack[stacksize][1] = f;
60 stack[stacksize][2] = rt;
61 stack[stacksize][3] = e;
62 stacksize++;
63 }
64
65 public static void pop() {
66 --stacksize;

Callers 2

getSize2Method · 0.95
dfs2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected