Package lupos.compression.huffman.tree

Examples of lupos.compression.huffman.tree.EndOfFile


      }
    }

    if(this.current<HuffmanOutputStream.blocksize){
      // consider also EOF!
      heap.add(new HeapEntry(1, new EndOfFile()));
    }
   
    // combine in each iteration those entries with the lowest weights
    while(heap.size()>1){
      HeapEntry a = heap.pop();
View Full Code Here

TOP

Related Classes of lupos.compression.huffman.tree.EndOfFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.