Skip to content

Instantly share code, notes, and snippets.

@ibogun
Created February 22, 2016 16:49
Show Gist options
  • Save ibogun/26d63a38a0cca0819df6 to your computer and use it in GitHub Desktop.
Save ibogun/26d63a38a0cca0819df6 to your computer and use it in GitHub Desktop.
QueueADT interface
public interface QueueADT<Key> {
public boolean isEmpty();
public boolean isFull();
public void enqueue(Key key);
public Key dequeue();
public Key front();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment