We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e11c522 commit 8937a3fCopy full SHA for 8937a3f
src/binarytree/bst/BinarySearchTreeMain.java
@@ -12,7 +12,8 @@ public class BinarySearchTreeMain {
12
* Main method to demonstrate the operations of a binary search tree.
13
*/
14
public static void main(String[] args) {
15
- // Create a binary search tree with the specified operational nature (StandardIterative or StandardRecursive).
+ // Create a binary search tree with the specified type:
16
+ // BST (StandardIterative or StandardRecursive), AVL and Red-Black.
17
ITree tree = createTree(BstType.RedBlack);
18
19
// Inserting various keys into the tree.
0 commit comments