Exemplo n.º 1
0
 public HuffmanTree(HuffmanTree left, HuffmanTree right)
 {
     this.value = null;
     this.left  = left;
     this.right = right;
 }
Exemplo n.º 2
0
 public HuffmanTree(char value)
 {
     this.value = value;
     this.left  = null;
     this.right = null;
 }