- GArrayStack<E> - Class in cse332.datastructures
-
A thin wrapper for Java's Stack that only implements
the Stack ADT.
- GArrayStack() - Constructor for class cse332.datastructures.GArrayStack
-
Initializes an empty stack.
- getCount(E) - Method in class cse332.datastructures.BinarySearchTree
-
Returns the current count for the data.
- getCount(E) - Method in class cse332.interfaces.DataCounter
-
Returns the current count for the data.
- getCount(E) - Method in class phasea.MoveToFrontList
-
- getCount(E) - Method in class phaseb.HashTable
-
- getCountsArray(DataCounter<E>) - Static method in class main.NGramCount
-
- getDataCounter(NGram) - Method in class cse332.datastructures.NGramFrequencySortedArrayMap
-
- getDataCounter(NGram) - Method in class cse332.interfaces.NGramTable
-
Returns the current frequency table for the ngram.
- getDataCounter(NGram) - Method in class phaseb.NGramFrequencyHashMap
-
- getFirstWord() - Method in class cse332.ngram.NGram
-
Returns the first word of the NGram
- getIterator() - Method in class cse332.datastructures.BinarySearchTree
-
Clients must not increment counts between an iterator's creation and its
final use.
- getIterator() - Method in class cse332.interfaces.DataCounter
-
Clients must not increment counts between an iterator's creation and its
final use.
- getIterator() - Method in class phasea.MoveToFrontList
-
- getIterator() - Method in class phaseb.HashTable
-
- getNext() - Method in class main.Markov
-
- getNGrams() - Method in class cse332.datastructures.NGramFrequencySortedArrayMap
-
- getNGrams() - Method in class cse332.interfaces.NGramTable
-
Clients must not change frequency tables or keys between
an iterator's creation and its final use.
- getNGrams() - Method in class phaseb.NGramFrequencyHashMap
-
- getSize() - Method in class cse332.datastructures.BinarySearchTree
-
The number of unique data elements in the structure.
- getSize() - Method in class cse332.interfaces.DataCounter
-
The number of unique data elements in the structure.
- getSize() - Method in class phasea.MoveToFrontList
-
- getSize() - Method in class phaseb.HashTable
-
- getTotal() - Method in class cse332.datastructures.BinarySearchTree
-
- getTotal() - Method in class cse332.interfaces.DataCounter
-
The number of total words (including duplicates) in the structure.
- getTotal() - Method in class phasea.MoveToFrontList
-
- getTotal() - Method in class phaseb.HashTable
-
- GStack<T> - Interface in cse332.interfaces
-
Interface for a type-generic stack.