Skip to content
This repository was archived by the owner on Apr 15, 2020. It is now read-only.

Commit 9b3a497

Browse files
committed
Readme update
1 parent 33e64ee commit 9b3a497

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -805,13 +805,13 @@ public class Test {
805805
* Binary Tree
806806
* Binary Search Tree(BST)
807807

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)`
813813

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!
815815

816816
### `Tree Node class for Binary Tree and Binary Search Tree(BST):`
817817

@@ -830,7 +830,7 @@ class TreeNode{
830830

831831
![alt text](Vault/BinaryTree.png "Binary Tree")
832832

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.
834834

835835

836836
### `Tree Node class for Binary Tree and Binary Search Tree(BST):`

0 commit comments

Comments
 (0)