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

Method push

src/class185/Code01_Wave1.java:52–58  ·  view source on GitHub ↗
(int u, int f, int t, int e)

Source from the content-addressed store, hash-verified

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

Callers 3

dfs3Method · 0.95
dfs4Method · 0.95
getSize2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected