Tfe

Ongi etorri tfe-ren webgunera...

Old stuff/ecole_etude_fac_de_pau/nico/tad/lzw.cpp

(Deskargatu)
#include "deflater.h"
#include "inflater.h"
#include <iostream>



int main()
{
    Inflater de;

    std::vector<unsigned int> elts;
    elts.push_back(98);
    elts.push_back(99);    
    elts.push_back(257);    
    elts.push_back(100);    
    elts.push_back(258);    
    elts.push_back(261);    
    elts.push_back(98);    
    elts.push_back(263);    
    elts.push_back(264);    
    elts.push_back(98);    
    de.setinput(elts);
    de.inflate();


}