Skip to content

Commit 8937a3f

Browse files
author
Lord-of-Algorithms
committed
Update comment for clarity in BinarySearchTreeMain.java.
1 parent e11c522 commit 8937a3f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/binarytree/bst/BinarySearchTreeMain.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ public class BinarySearchTreeMain {
1212
* Main method to demonstrate the operations of a binary search tree.
1313
*/
1414
public static void main(String[] args) {
15-
// Create a binary search tree with the specified operational nature (StandardIterative or StandardRecursive).
15+
// Create a binary search tree with the specified type:
16+
// BST (StandardIterative or StandardRecursive), AVL and Red-Black.
1617
ITree tree = createTree(BstType.RedBlack);
1718

1819
// Inserting various keys into the tree.

0 commit comments

Comments
 (0)