Skip to content

Instantly share code, notes, and snippets.

@skmangalam
Created December 18, 2017 11:40
Show Gist options
  • Select an option

  • Save skmangalam/3b93eec05e43e82cc12bf41e3900e9ab to your computer and use it in GitHub Desktop.

Select an option

Save skmangalam/3b93eec05e43e82cc12bf41e3900e9ab to your computer and use it in GitHub Desktop.
Stack Interface
public interface Stack<X> {
public void push(X item);
public X pop();
public boolean contains(X item);
public X access(X item);
public int size();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment