Tree<T> constructor
Tree<T> (
- T rootValue
Implementation
Tree(T rootValue) {
root = TreeElement(rootValue, null);
}
Tree(T rootValue) {
root = TreeElement(rootValue, null);
}