Skip to content

Instantly share code, notes, and snippets.

@raunaqsingh2020
Created March 11, 2020 18:26
Show Gist options
  • Save raunaqsingh2020/33e8779fc086aac881a3335c2b986b32 to your computer and use it in GitHub Desktop.
Save raunaqsingh2020/33e8779fc086aac881a3335c2b986b32 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