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

Method push

src/class183/Code07_Message1.java:50–56  ·  view source on GitHub ↗
(int u, int f, int edge, int e)

Source from the content-addressed store, hash-verified

48 public static int stacksize;
49
50 public static void push(int u, int f, int edge, int e) {
51 stack[stacksize][0] = u;
52 stack[stacksize][1] = f;
53 stack[stacksize][2] = edge;
54 stack[stacksize][3] = e;
55 stacksize++;
56 }
57
58 public static void pop() {
59 --stacksize;

Callers 2

getSize2Method · 0.95
dfs2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected