Skip to content

Commit 78f1bcb

Browse files
committed
chore: fixing
1 parent 3dbd7f4 commit 78f1bcb

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

README.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
- [Route Between Nodes: Given a directed graph, design an algorithm to find out whether there is a route between two nodes.](#route-between-nodes-given-a-directed-graph-design-an-algorithm-to-find-out-whether-there-is-a-route-between-two-nodes)
6767
- [Minimal Tree: Given a sorted increasing order array with unique integer elements, write an algorithm to create a binary search tree with minimal height](#minimal-tree-given-a-sorted-increasing-order-array-with-unique-integer-elements-write-an-algorithm-to-create-a-binary-search-tree-with-minimal-height)
6868
- [Check if a given binary tree is BST ( Binary Search Tree )](#check-if-a-given-binary-tree-is-bst--binary-search-tree-)
69+
- [Delete node from Binary Search Tree (BST)](#delete-node-from-binary-search-tree-bst)
6970
- [Recursion Interview Questions](#recursion-interview-questions)
7071
- [Calculate x to the power n using recursion](#calculate-x-to-the-power-n-using-recursion)
7172
- [Calculate Modular Exponentiation using recursion](#calculate-modular-exponentiation-using-recursion)
@@ -681,21 +682,29 @@ Trade off or invest some memory to improve run time complexity. Suppose use Has-
681682

682683
**Binary Search Tree (BST)**: is a binary tree in which for each node value of all the nodes in the left subtree is lesser or equal to the root node. And the values of all the nodes in the right subtree is greater than the root node.
683684

684-
In order to find a tree as BST we must define each node range that is its outer and inner bound values.
685+
In order to find a tree as BST we must `define each node range` that is its outer and inner bound values and iterate the tree and compare their ranges.
685686

686687
![](https://i.imgur.com/gxHDDqd.png)
687688

688-
Is Binary Search Tree Algorithm
689+
Is Binary Search Tree `Algorithm`
689690

690691
![](https://i.imgur.com/zaxKJxL.png)
691692

692-
Is Binary Search Tree Algorithm Simulation
693+
Is Binary Search Tree `Algorithm Simulation`
693694

694695
![](https://i.imgur.com/il4sN6p.png)
695696

697+
Is Binary Search Tree `Coding Files`
698+
696699
- [Question](https://codepen.io/roopkt/pen/JjWwYGo)
697700
- [Answer](https://codepen.io/roopkt/pen/zYZyvzO)
698701

702+
703+
#### Delete node from Binary Search Tree (BST)
704+
705+
706+
707+
699708
### Recursion Interview Questions
700709

701710
#### Calculate x to the power n using recursion
@@ -722,6 +731,7 @@ Modular Exponentiation is the remainder dividing up on `Pow(x,n)` by `M`.
722731
![Modular Exponentiation is the remainder dividing up on `Pow(x,n)` by `M`](https://i.imgur.com/Y3GkhRT.png)
723732

724733
- [Question](https://codepen.io/roopkt/pen/GRWYVEa?editors=0010)
734+
725735
- [Answer](https://codepen.io/roopkt/pen/gOmBVWJ?editors=0010)
726736

727737
### Sorted Array Interview Coding

0 commit comments

Comments
 (0)