Skip to content

Commit f509cf5

Browse files
authored
Update README.md
1 parent 1ed8905 commit f509cf5

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,17 @@ Feel free to clone, modify, and use this code for your own projects. Happy codin
5050

5151
## THE OUTPUT FOR ABOVE RUNS AS
5252

53-
The current Binary Tree: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
53+
The current Binary Tree:
54+
``` 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ```
5455

5556
Max of Nodes using Max Recursive function is 20
5657

5758
Min of Nodes using Min Recursive function is 1
5859

5960
Removing Value: 12
60-
61+
```
6162
1 2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20
62-
63+
```
6364
Search Operation Using Hunt():
6465

6566
- HUNT 1 = 0x558849c91eb0
@@ -83,8 +84,11 @@ Search Operation Using Hunt():
8384
- HUNT 19 = 0x558849c91ef0
8485
- HUNT 20 = 0x558849c91ed0
8586

86-
Pre Order Traversal: 1 20 19 18 17 16 15 14 13 11 10 9 8 7 6 5 4 3 2
87+
Pre Order Traversal:
88+
```1 20 19 18 17 16 15 14 13 11 10 9 8 7 6 5 4 3 2```
8789

88-
Post Order Traversal: 2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 1
90+
Post Order Traversal:
91+
```2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 1```
8992

90-
In Order Traversal: 1 2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20
93+
In Order Traversal:
94+
```1 2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20```

0 commit comments

Comments
 (0)