mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-19 09:50:03 +08:00
Add Implementation of Tree Sort and Generic Type BST (#2638)
This commit is contained in:
@ -26,7 +26,7 @@ public class BSTRecursive {
|
||||
|
||||
/** main function for tests */
|
||||
public static void main(String[] args) {
|
||||
BSTIterative tree = new BSTIterative();
|
||||
BSTRecursive tree = new BSTRecursive();
|
||||
tree.add(5);
|
||||
tree.add(10);
|
||||
tree.add(9);
|
||||
|
Reference in New Issue
Block a user