Skip to content

Instantly share code, notes, and snippets.

public class Element implements Comparable<Element>{
String val;
int count;
String code = null;
Element leftChild;
Element rightChild;
public Element(String v, int c){
this.val = v;
this.count = c;