Created
April 9, 2019 09:36
-
-
Save ssaurel/b4e0516e2d1642d4bb73ba7689715991 to your computer and use it in GitHub Desktop.
Node for the Tree Traversal Algorithms in Java on the SSaurel's Channel
This file contains 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 Node<T> { | |
T data; | |
Node<T> left; | |
Node<T> right; | |
public Node(T data) { | |
this.data = data; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment