72737475767778
/** * Constructor * @param out the underlying output stream, which is converted into a bit output stream */ public HuffmanOutputStream(final OutputStream out){ this.out = new BitOutputStream(out); }