Skip to content

Instantly share code, notes, and snippets.

@raunaqsingh2020
Created March 23, 2020 14:36
Show Gist options
  • Save raunaqsingh2020/1ecfc2afa57fd8dfe21cbff3e310d654 to your computer and use it in GitHub Desktop.
Save raunaqsingh2020/1ecfc2afa57fd8dfe21cbff3e310d654 to your computer and use it in GitHub Desktop.
public class BinaryNode {
String character;
int data;
BinaryNode left, right;
BinaryNode(int d) {
data = d;
left = right = null;
}
BinaryNode(String s, int d) {
character = s;
data = d;
left = right = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment