Skip to content

Instantly share code, notes, and snippets.

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