Skip to content

Commit bc67447

Browse files
authored
Updated README
Added details about printPreorder, printInorder and printPostorder methods
1 parent f4124f4 commit bc67447

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

AVL Tree/README.md

+18
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,24 @@ AVL Tree is a variant of the Binary Search Tree which uses rotation operations t
5050
Time Complexity: Logarithmic in the number of nodes in the AVL Tree
5151
</p>
5252
</li>
53+
<li>
54+
<h5><code>void printPreorder ()</code></h5>
55+
<p align="justify">
56+
Prints the PreOrder traversal of the AVL Tree
57+
</p>
58+
</li>
59+
<li>
60+
<h5><code>void printInorder ()</code></h5>
61+
<p align="justify">
62+
Prints the InOrder traversal of the AVL Tree
63+
</p>
64+
</li>
65+
<li>
66+
<h5><code>void printPostorder ()</code></h5>
67+
<p align="justify">
68+
Prints the PostOrder traversal of the AVL Tree
69+
</p>
70+
</li>
5371
</ul>
5472
<h2>To Do</h2>
5573
<ul>

0 commit comments

Comments
 (0)