Skip to content

Instantly share code, notes, and snippets.

View RealVlusion's full-sized avatar

Vick RealVlusion

  • United Fairs
  • The Netherlands
View GitHub Profile
@skmangalam
skmangalam / ListStack.java
Created December 19, 2017 10:44
Implementation Of Stack Using ArrayList
import java.util.ArrayList;
public class ListStack<X> implements Stack<X> {
private ArrayList<X> list;
public ListStack() {
list = new ArrayList<X>();