Created
May 2, 2021 09:24
-
-
Save syedjafer/15efd7e7829eeaa7c4c815542bec4d8a 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
| class Node{ | |
| int data; | |
| Node left; | |
| Node right; | |
| Node(int dat) | |
| { | |
| data = dat; | |
| left = right = null; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment