mirror of
https://github.com/TheAlgorithms/Java.git
synced 2026-02-02 11:40:34 +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