Skip navigation links
A D E G I M P R T 

A

add(E) - Method in class MahFravrit
Add an item to this set of items.

D

dequeue() - Method in class MyQueue
Remove and return the front item in the queue.

E

enqueue(E) - Method in class MyQueue
Enqueue the given item to the back of the queue.

G

getFravrit() - Method in class MahFravrit
Find, remove, and return the fravrit ("favorite"), item in the set of items.

I

isEmpty() - Method in class MahFravrit
Return whether or not any items are contained.
isEmpty() - Method in class MyQueue
Return whether or not this queue is empty.
isEmpty() - Method in class MyStack
Return whether or not this stack is empty.

M

MahFravrit<E> - Class in <Unnamed>
MahFravrit ("MyFavorite") is a meme-influenced class that is defined according to a generic Comparator that expresses preference, takes in any number of items to be compared, and allows the user to request and remove a fravrit ("favorite") from the given set.
MahFravrit(Comparator<E>) - Constructor for class MahFravrit
Create a new MahFravrit object with the given Comparator to discern mah fravrit ("my favorite") item of that type.
MyQueue<E> - Class in <Unnamed>
A simple queue implementation based on our in-class implementation of MyLinkedList.
MyQueue() - Constructor for class MyQueue
 
MyStack<E> - Class in <Unnamed>
A simple stack implementation based on our in-class implementation of MyLinkedList.
MyStack() - Constructor for class MyStack
 

P

peek() - Method in class MyQueue
Return (but do not remove) the front item in the queue.
peek() - Method in class MyStack
Return (but do not remove) the top item in the stack.
pop() - Method in class MyStack
Remove and return the top item in the stack.
push(E) - Method in class MyStack
Push the given item onto the top of the stack.

R

remove(E) - Method in class MahFravrit
Request to remove a given item from this set.

T

toString() - Method in class MyQueue
Returns a string beginning and ending with left and right square brackets, respectively, and containing a comma and space separated list of queue elements ordered from the front of the queue to the back of the queue.
toString() - Method in class MyStack
Returns a string beginning and ending with left and right square brackets, respectively, and containing a comma separated list of stack elements ordered from the top of the stack to the bottom of the stack.
A D E G I M P R T 
Skip navigation links