Modify Listing 25.8, BSTAnimation.java, to add three new buttonsShow Inorder, Show Preorder, and Show Postorder to display

Question:

Modify Listing 25.8, BSTAnimation.java, to add three new buttons—Show Inorder, Show Preorder, and Show Postorder—
to display the result in a label, as shown in Figure 25.22. You need also to modify Listing 25.4, BST.java to implement the inorderList(), preorderList(), and postorderList() methods so each of these methods returns a List of the node elements in inorder, preorder, and postorder, as follows:

public java.util.List inorderList();
public java.util.List preorderList();
public java.util.List postorderList();


Data from Listing 25.4

Data from Listing 25.8


Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: