/* * Author: * Implements Huffman's binary encoding algorithm */ import java.io.IOException; public class Huffman { public static void main(String[] args) throws IOException{ //Runs encode System.out.println(encode("Hello World!")); } public static String encode(String message){ // Uses Huffman's algorithm to encode message into binary // Also prints a dictionary. return "You should probably insert some code"; } }