Created
February 22, 2016 16:50
-
-
Save ibogun/3cdd18625ba78d139fbe to your computer and use it in GitHub Desktop.
StackADT interface
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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