Skip to content

Commit f8bd499

Browse files
author
Ranjeet Kumar Jena
committed
java convention fixed
1 parent 8e7a5f3 commit f8bd499

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/main/java/com/thealgorithms/datastructures/trees/BSTIterative.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
* <p>
1111
* An implementation of BST iteratively. Binary Search Tree is a binary tree
1212
* which satisfies three properties: left child is less than root node, right
13-
* child is grater than root node, both left and right childs must themselves be
13+
* child is grater than root node, both left and right child must themselves be
1414
* a BST.
1515
*
16-
* @author [Lakhan Nad](https://github.com/Lakhan-Nad)
16+
* @author [Lakhan Nad](<a href="https://github.com/Lakhan-Nad">git-Lakhan Nad</a>)
1717
*/
1818

1919
public class BSTIterative {

src/main/java/com/thealgorithms/datastructures/trees/BSTRecursive.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* I have made public functions as methods and to actually implement recursive
1818
* approach I have used private methods
1919
*
20-
* @author [Lakhan Nad](https://github.com/Lakhan-Nad)
20+
* @author [Lakhan Nad](<a href="https://github.com/Lakhan-Nad">git-Lakhan Nad</a>)
2121
*/
2222
public class BSTRecursive {
2323

src/main/java/com/thealgorithms/datastructures/trees/BSTRecursiveGeneric.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
* <p>
1010
* A recursive implementation of generic type BST.
1111
*
12-
* Reference: https://en.wikipedia.org/wiki/Binary_search_tree
12+
* Reference: <a href="https://en.wikipedia.org/wiki/Binary_search_tree">Uncyclo links for BST</a>
1313
* </p>
1414
*
15-
* @author [Madhur Panwar](https://github.com/mdrpanwar)
15+
* @author [Madhur Panwar](<a href="https://github.com/mdrpanwar">git-Madhur Panwar</a>)
1616
*/
1717
public class BSTRecursiveGeneric<T extends Comparable<T>> {
1818

@@ -219,7 +219,7 @@ private void inOrderSort(Node<T> node, List<T> sortedList) {
219219
}
220220

221221
/**
222-
* Serach recursively if the given value is present in BST or not.
222+
* Search recursively if the given value is present in BST or not.
223223
*
224224
* @param node the node under which to check
225225
* @param data the value to be checked

src/main/java/com/thealgorithms/datastructures/trees/CeilInBinarySearchTree.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* ii) If key is lesser than root value than ceil will be in right subtree so
4040
* call recursively on right subtree iii) if key is greater than current root,
4141
* then either a) the root is ceil b) ceil is in left subtree: call for left
42-
* subtree. If left subtree returns a non null value then that will be ceil
42+
* subtree. If left subtree returns a non-null value then that will be ceil
4343
* otherwise the root is ceil
4444
*/
4545
public class CeilInBinarySearchTree {

0 commit comments

Comments
 (0)