Skip to content

Instantly share code, notes, and snippets.

@ibogun
Created February 22, 2016 16:50
Show Gist options
  • Save ibogun/3cdd18625ba78d139fbe to your computer and use it in GitHub Desktop.
Save ibogun/3cdd18625ba78d139fbe to your computer and use it in GitHub Desktop.
StackADT interface
public interface StackADT<Key> {
public boolean isEmpty();
public boolean isFull();
public void push(Key key);
public Key pop();
public Key top();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment