#include #include // A Tree node typedef struct leaf { char ch; int freq; struct leaf *left, *right; }leaf; typedef st