MCPcopy Create free account
hub / github.com/Tiwarishashwat/InterviewCodes / CustomStack

Method CustomStack

DesignAStackWithIncrements.java:7–13  ·  view source on GitHub ↗
(int maxSize)

Source from the content-addressed store, hash-verified

5 int size;
6 int index;
7 public CustomStack(int maxSize) {
8 stack = new int[maxSize];
9 operations = new int[maxSize];
10 capacity = maxSize;
11 size=0;
12 index = -1;
13 }
14
15 public void push(int x) {
16 if(isFull()){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected