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

Method push

src/class173/Code05_HLD1.java:147–152  ·  view source on GitHub ↗
(int fir, int sec, int edg)

Source from the content-addressed store, hash-verified

145 public static int stacksize, first, second, edge;
146
147 public static void push(int fir, int sec, int edg) {
148 fse[stacksize][0] = fir;
149 fse[stacksize][1] = sec;
150 fse[stacksize][2] = edg;
151 stacksize++;
152 }
153
154 public static void pop() {
155 --stacksize;

Callers 2

dfs3Method · 0.95
dfs4Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected