Created
March 11, 2020 18:26
-
-
Save raunaqsingh2020/2f5dd9ac8e59a56de3d0b9d6a75e6c68 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