I have a menu driven program that prompts a user to enter as many integers as they would like in order to construct a binary search tree. I am required to do this using the strategy pattern in order to be able to pick eiter in-order, pre-order, and post-order traversals and displays. So far I have everything working as far as the flow, I am able to construct the tree, and have the user pick the traversal, and I have a print statement in each concrete strategy class to show that I actually made it there. My issue is when I am actually trying to display the tree. Everything I have found requires access to a Node but my Node class is private nested inside of my BinaryTree and I can't figure out how to get to it easily :-( Can someone please point me in the right direction??
Here is the concrete strategy class where I am having my issue:
public class InOrder implements Strategy{
public void traverse(){
System.out.println("Here is your binary search tree displayed in order. " + "\n");
public void printInOrder(){
printInOrder(root);
System.out.println();
}
private void printInOrder(Node node) {
if (node == null)
return;
printInOrder(node.leftChild);
System.out.println(node.value + " ");
printInOrder(node.rightChild);
}
}
}
and here is my BST class
package model;
public class BinaryTree {
Strategy strategy;
private Node root;
private static class Node{
int value;
Node leftChild;
Node rightChild;
Node(int newValue){
this.value = newValue;
leftChild = null;
rightChild = null;
}
}
BinaryTree(){
root = null;
}
public void BinaryTree(int value){
root = new Node(value);
}
public Boolean isEmpty(){
Boolean isEmpty;
if(this.root == null)
isEmpty = true;
else
isEmpty = false;
return isEmpty;
}
public BinaryTree(Strategy strategy){
this.strategy = strategy;
}
public void traverse(){
this.strategy.traverse();
}
public void insert(int newValue){
insertIntoTree(root, newValue);
}
public void insertIntoTree(Node node, int newValue){
if(isEmpty())
root = new Node(newValue);
else if(newValue < node.value){
if(node.leftChild != null){
insertIntoTree(node.leftChild, newValue);
} else {
System.out.println("Inserted" + newValue + " to the left of " + node.value);
node.leftChild = new Node(newValue);
}
} else if (newValue > node.value){
if(node.rightChild != null){
insertIntoTree(node.rightChild, newValue);
} else {
System.out.println("Inserted " + newValue + " to the right of " + node.value);
node.rightChild = new Node(newValue);
}
}
}
}