Update Tree-Traversal.md

pull/1269/head
Ramya Korupolu 2024-06-23 12:24:08 +05:30 zatwierdzone przez GitHub
rodzic b6632c6d7f
commit b4842100ea
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -125,7 +125,7 @@ def printInorder(root):
In this traversal method, the root node is visited first, then the left subtree and finally the right subtree. In this traversal method, the root node is visited first, then the left subtree and finally the right subtree.
![preorder](images/preorder-traversal.png) ![preorder](images/Preorder%20traversal.png))
**The order:** Root -> Left -> Right **The order:** Root -> Left -> Right