We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4124f4 commit bc67447Copy full SHA for bc67447
AVL Tree/README.md
@@ -50,6 +50,24 @@ AVL Tree is a variant of the Binary Search Tree which uses rotation operations t
50
Time Complexity: Logarithmic in the number of nodes in the AVL Tree
51
</p>
52
</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
60
+ <h5><code>void printInorder ()</code></h5>
61
62
+ Prints the InOrder traversal of the AVL Tree
63
64
65
66
+ <h5><code>void printPostorder ()</code></h5>
67
68
+ Prints the PostOrder traversal of the AVL Tree
69
70
71
</ul>
72
<h2>To Do</h2>
73
<ul>
0 commit comments