Skip to content

Instantly share code, notes, and snippets.

View kirlf's full-sized avatar
💻
Working

Vladimir Fadeev kirlf

💻
Working
View GitHub Profile
@kirlf
kirlf / huffman.py
Last active April 24, 2024 14:59 — forked from jasonrdsouza/huffman.py
Simple Huffman coding implementation
# Python 3.8
import math
from queue import Queue
from collections import Counter
class HuffmanCodes:
def __init__(self):
pass
def __huffman_tree_to_table(self, root, prefix, lookup_table):