Skip to content

Commit 355d044

Browse files
author
Antesh Sharma
committed
refactoring
1 parent 19fcfdb commit 355d044

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/java/com/antesh/dsa/BinarySearchTree.java renamed to src/main/java/com/antesh/dsa/bst/BinarySearchTree.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.antesh.dsa;
1+
package com.antesh.dsa.bst;
22

33
/*
44
* https://www.javatpoint.com/binary-tree

src/main/java/com/antesh/dsa/BinarySearchTreeInorderSuccessorOfInputNode.java renamed to src/main/java/com/antesh/dsa/bst/BinarySearchTreeInorderSuccessorOfInputNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.antesh.dsa;
1+
package com.antesh.dsa.bst;
22

33
public class BinarySearchTreeInorderSuccessorOfInputNode {
44

src/main/java/com/antesh/dsa/SortedArrayToBST.java renamed to src/main/java/com/antesh/dsa/bst/SortedArrayToBST.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.antesh.dsa;
1+
package com.antesh.dsa.bst;
22

33

44
/*Given a sorted array, create a balanced BST and not skewed bst

0 commit comments

Comments
 (0)