This is the implementation of the Huffman encoding in Go programming language.
- Implementation is accomplished using the Heap Data structure and the min-heap to be specific
- The Heap data structure is going to be implemented by myself
Implemented the Huffman encoding algorithm using the min heap data structure