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

Method push

src/class161/Code07_FarAway1.java:98–103  ·  view source on GitHub ↗
(int fir, int sec, int edg)

Source from the content-addressed store, hash-verified

96 public static int stacksize, first, second, edge;
97
98 public static void push(int fir, int sec, int edg) {
99 fse[stacksize][0] = fir;
100 fse[stacksize][1] = sec;
101 fse[stacksize][2] = edg;
102 stacksize++;
103 }
104
105 public static void pop() {
106 --stacksize;

Callers 2

dfs3Method · 0.95
dfs4Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected