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

Method push

src/class185/Code05_OpenStore1.java:59–66  ·  view source on GitHub ↗
(int u, int f, int a, int b, int e)

Source from the content-addressed store, hash-verified

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

Callers 4

dfs3Method · 0.95
dfs4Method · 0.95
getSize2Method · 0.95
getList2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected