Created
March 11, 2020 18:26
-
-
Save raunaqsingh2020/33e8779fc086aac881a3335c2b986b32 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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