Skip to content

Instantly share code, notes, and snippets.

View MuhammadEsmaiel's full-sized avatar

MuhammadEsmaiel MuhammadEsmaiel

View GitHub Profile
@pwxcoo
pwxcoo / huffman.cpp
Created July 14, 2019 13:56
huffman encoding implemented by c++
#include <iostream>
#include <string>
#include <queue>
#include <unordered_map>
using namespace std;
// A Tree node
struct Node
{
char ch;