Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created April 9, 2019 09:36
Node for the Tree Traversal Algorithms in Java on the SSaurel's Channel
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