You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 15, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -805,13 +805,13 @@ public class Test {
805
805
* Binary Tree
806
806
* Binary Search Tree(BST)
807
807
808
-
### Tree-Algorithms
809
-
* Level-Order Traversal **(Breadth First Search)**
810
-
* Pre-Order Traversal **(Depth First Search)**
811
-
* Post-Order Traversal **(Depth First Search)**
812
-
* In-Order Traversal **(Depth First Search)**
808
+
### Tree-Algorithms:
809
+
* Level-Order Traversal `(Breadth First Search)`
810
+
* Pre-Order Traversal `(Depth First Search)`
811
+
* Post-Order Traversal `(Depth First Search)`
812
+
* In-Order Traversal `(Depth First Search)`
813
813
814
-
### Binary Tree: A Tree data structure where each element can at-most have 2 children i.e. a left child and a right child!
814
+
`**Binary Tree:**` A Tree data structure where each node can at-most have 2 children i.e. a left child and a right child!
815
815
816
816
### `Tree Node class for Binary Tree and Binary Search Tree(BST):`
817
817
@@ -830,7 +830,7 @@ class TreeNode{
830
830
831
831

832
832
833
-
### Binary Search Tree(BST): A Binary Tree where the left child is less than the root and the right child is greater than the root and each node can have at-most have 2 children! All the nodes in the left subtree are less than the root node and all the nodes in the right subtree are greater than the root node. All the subtrees in a BST are BST.
833
+
`**Binary Search Tree(BST):**` A Binary Tree where the left child is less than the root and the right child is greater than the root and each node can have at-most have 2 children! All the nodes in the left subtree are less than the root node and all the nodes in the right subtree are greater than the root node. All the subtrees in a BST are BST.
834
834
835
835
836
836
### `Tree Node class for Binary Tree and Binary Search Tree(BST):`
0 commit comments