
  ============================================
  ----- n-ary Huffman Template Algorithm -----
  ---------------- Version-2.2 ---------------
  ============================================

  The algorithm has been written by Alex Vinokur.
  Programming Language : C++.
  Any and all comments would be appreciated.

  DISCLAIMER

    Copyright (c) 1999-2002 by Alex Vinokur.

    This work and all works derived from it may be copied and modified 
    without any restrictions other than that 
    a copy of this copyright notice must be included in any copy 
    of this work or any derived work.

    The Author assume no responsibility for damage or loss of system
    performance as a direct or indirect result of the use of this
    software.

  =====================================
  AVAILABILITY

    -----------------------------------
    ### Web page ###
        http://alexvn.freeservers.com/s1/huffman_template_algorithm.html

        Content:
          1. Algorithm
          2. Classes
          3. Program Files (Description)
          4. Tests (Description and Input Data Files)
          5. Program Files (Headers & Source)
          6. Compiling
          7. Running (Tests)
          8. Download

    -----------------------------------
    ### Download ###
        http://home.barak-online.net/alexvn/s2/hf/hufnta22.zip
        http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=3511&lngWId=3
        http://alexvn.freeservers.com/s1/huffman_template_algorithm.zip (via http://alexvn.freeservers.com/s1/huffman_template_algorithm.html)

        Files:

           0. README.txt	(this file)

              --- Program Files ---
           1. version.h        
           2. service.h
           3. classes.h
           4. methods.h
           5. demotype.h	// demo file 
           6. democase.h	// demo file
           7. huf_main.cpp

           8. version.cpp
           9. service.cpp
          10. demotype.cpp	// demo file
          11. democase.cpp	// demo file
          12. demomain.cpp	// demo main
          13. huf_main.cpp

             --- Demo Input Data Files ---
          14. data_file_01.txt
          15. data_file_02.txt
          16. weights_file_01.txt
          17. weights_file_01.txt
          18. d1.txt
          19. d2.txt
          20. w1.txt
          21. w2.txt

             --- Makefile ---
          22. Makefile

             --- Run batch File ---
          23. compile.bat	// make
          24. run_demo.bat	// demo
          25. run_huf.bat


  =====================================
  ENVIRONMENT

    ### System & Compiler ###

	Microsoft Windows 2000
	  Intel(R) Celeron(R)
	  CPU 1.70GHz

	DJGPP 2.03
	gcc version 3.1
	  Configured with: ../configure i586-pc-msdosdjgpp --prefix=/dev/env/DJDIR --disable-nls
	  GNU CPP version 3.1 (cpplib) (80386, BSD syntax)
	  GNU C++ version 3.1 (djgpp) compiled by GNU C version 3.1

	GNU Make version 3.79.1, by Richard Stallman and Roland McGrath.
	  Built for i386-pc-msdosdjgpp


  =====================================
  USAGE

    ### Compilation & Run Tests ###

        %compile.bat

        %run_demo.bat
        %run_huf.bat


=========================================================

	Alex Vinokur
		2002.09.01
	-----------------------------------
	mailto:alexvn@go.to
	mailto:alexv@hitechclub.com
	http://up.to/alexvn
	http://go.to/alexv_math
	-----------------------------------

=========================================================

