Exemplo n.º 1
0
 public bool IsLeaf(HuffmanNode huffmanNode)
 {
     return(huffmanNode.Left == null && huffmanNode.Right == null);
 }