A C D E F G H I L M N O P R S T U Z

A

abs() - Method in class edu.cmu.cs.pattis.cs151xx.Rational
Returns a new fraction that is the absolute value of this one.
AbstractOrderedCollection<E> - Class in edu.cmu.cs.pattis.cs151xx.orderedCollections
This class provides a skeletal implementation of the OrdredCollection interface to minimize the effort required to implement this interface backed by a "random access" data store (such as an array).
AbstractPriorityQueue<E> - Class in edu.cmu.cs.pattis.cs151xx.orderedCollections
This class extends a skeletal implementation of AbstractOrderedCollection with the equals method.
AbstractQueue<E> - Class in edu.cmu.cs.pattis.cs151xx.orderedCollections
This class extends a skeletal implementation of AbstractOrderedCollection with the equals method.
AbstractStack<E> - Class in edu.cmu.cs.pattis.cs151xx.orderedCollections
This class extends a skeletal implementation of AbstractOrderedCollection with the equals method.
add(E) - Method in class edu.cmu.cs.pattis.cs151xx.orderedCollections.AbstractOrderedCollection
Ensures that this ordered collection contains the specified element; partial implementation must be overridden.
add(E) - Method in class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayPriorityQueue
Ensures that this priority queue contains the specified element.
add(E) - Method in class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayQueue
Ensures that this queue contains the specified element.
add(E) - Method in class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayStack
Ensures that this stack contains the specified element.
add(E) - Method in class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayUnsortedPriorityQueue
Ensures that this priority queue contains the specified element.
add(E) - Method in class edu.cmu.cs.pattis.cs151xx.orderedCollections.LinkedQueue
Ensures that this queue contains the specified element.
add(E) - Method in class edu.cmu.cs.pattis.cs151xx.orderedCollections.LinkedStack
Ensures that this stack contains the specified element.
add(E) - Method in interface edu.cmu.cs.pattis.cs151xx.orderedCollections.OrderedCollection
Ensures that this ordered collection contains the specified element.
add(Rational) - Method in class edu.cmu.cs.pattis.cs151xx.Rational
Returns a new fraction that is the sum of this one and other.
addAll(OrderedCollection<E>) - Method in class edu.cmu.cs.pattis.cs151xx.orderedCollections.AbstractOrderedCollection
Adds all of the elements in the specified ordered collection to this collection.
addAll(OrderedCollection<E>) - Method in interface edu.cmu.cs.pattis.cs151xx.orderedCollections.OrderedCollection
Adds all of the elements in the specified ordered collection to this collection.
allSame() - Method in class edu.cmu.cs.pattis.cs151xx.DiceEnsemble
Returns whether the pips showing for each die are all the same.
ArrayPriorityQueue<E> - Class in edu.cmu.cs.pattis.cs151xx.orderedCollections
This class implements the OrderedCollection interface with priority queue behavior: highest priority out.
ArrayPriorityQueue(int, Comparator<? super E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayPriorityQueue
Constructs an empty, new priority queue with the capacity specified.
ArrayPriorityQueue(Comparator<? super E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayPriorityQueue
Constructs an empty, new priority queue with the capacity specified.
ArrayPriorityQueue(OrderedCollection<? extends E>, Comparator<? super E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayPriorityQueue
Constructs a new priority queue containing the elements in the specified ordered collection.
ArrayPriorityQueue(Collection<? extends E>, Comparator<? super E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayPriorityQueue
Constructs a new priority queue containing the elements in the specified collection.
ArrayPriorityQueue(E[], Comparator<? super E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayPriorityQueue
Constructs a new priority queue containing the elements in the specified array.
ArrayQueue<E> - Class in edu.cmu.cs.pattis.cs151xx.orderedCollections
This class implements the OrderedCollection interface with FIFO behavior: first in/first out.
ArrayQueue(int) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayQueue
Constructs an empty, new queue with the capacity specified.
ArrayQueue() - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayQueue
Constructs a new, empty queue.
ArrayQueue(OrderedCollection<? extends E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayQueue
Constructs a new queue containing the elements in the specified ordered collection.
ArrayQueue(Collection<? extends E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayQueue
Constructs a new queue containing the elements in the specified collection.
ArrayQueue(E[]) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayQueue
Constructs a new queue containing the elements in the specified array.
ArrayStack<E> - Class in edu.cmu.cs.pattis.cs151xx.orderedCollections
This class implements the OrderedCollection interface with LIFO behavior: last in/first out.
ArrayStack(int) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayStack
Constructs an empty, new stack with the capacity specified.
ArrayStack() - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayStack
Constructs a new, empty stack.
ArrayStack(OrderedCollection<? extends E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayStack
Constructs a new stack containing the elements in the specified ordered collection.
ArrayStack(Collection<? extends E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayStack
Constructs a new stack containing the elements in the specified collection.
ArrayStack(E[]) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayStack
Constructs a new stack containing the elements in the specified array.
ArrayUnsortedPriorityQueue<E> - Class in edu.cmu.cs.pattis.cs151xx.orderedCollections
This class implements the OrderedCollection interface with priority queue behavior: highest priority out.
ArrayUnsortedPriorityQueue(int, Comparator<? super E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayUnsortedPriorityQueue
Constructs an empty, new priority queue with the capacity specified.
ArrayUnsortedPriorityQueue(Comparator<? super E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayUnsortedPriorityQueue
Constructs an empty, new priority queue with the capacity specified.
ArrayUnsortedPriorityQueue(OrderedCollection<E>, Comparator<? super E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayUnsortedPriorityQueue
Constructs a new priority queue containing the elements in the specified ordered collection.
ArrayUnsortedPriorityQueue(Collection<E>, Comparator<? super E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayUnsortedPriorityQueue
Constructs a new priority queue containing the elements in the specified collection.
ArrayUnsortedPriorityQueue(E[], Comparator<? super E>) - Constructor for class edu.cmu.cs.pattis.cs151xx.orderedCollections.ArrayUnsortedPriorityQueue
Constructs a new priority queue containing the elements in the specified array.

A C D E F G H I L M N O P R S T U Z