Uncategorized
Java program to input text and output Huffman code
Learning Goal: I’m working on a java exercise and need an explanation and answer to help me learn.
Write a JAVA program that enables the user to enter any text and follows the Huffman coding technique to compress the text data. Output the Huffman Coding and frequency of each input character.
Only able to use import.java.scanner.
Example:
input: EXAMPLE
output:
Character Frequency Code
A 1 110
E 2 10
L 1 00
M 1 011
P 1 010
X 1 111