- calculateFrequencies(String) - Static method in class edu.msoe.jones.huffmantree.HuffmanTreeUtilities
-
A method that calculates the frequencies of all of the characters in a given String
and stores those characters in an array, using the character's ASCII numbers as
their index.
- CODE_TABLE - Static variable in class edu.msoe.jones.huffmantree.HuffmanTreeUtilities
-
HashMap that who's entries contain an ASCII character and a String containing
it's Huffman binary code.
- compareTo(HuffmanTree) - Method in class edu.msoe.jones.huffmantree.HuffmanTree
-
Method required by Comparable to compare two HuffmanTrees.
- compress(HuffmanTree, String, String) - Static method in class edu.msoe.jones.huffmantree.HuffmanTreeUtilities
-
A method that saves text stored in a String to a compressed binary file using
Huffman encoding