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

Method push

src/class161/Code01_HLD1.java:102–107  ·  view source on GitHub ↗
(int fir, int sec, int edg)

Source from the content-addressed store, hash-verified

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

Callers 2

dfs3Method · 0.95
dfs4Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected