Update Tree-Traversal.md

pull/1269/head
Ramya Korupolu 2024-06-23 12:30:08 +05:30 zatwierdzone przez GitHub
rodzic a6c0c7c7c4
commit 937f04f51c
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.
![preorder](images/Preorder%20traversal.png))
![preorder](images/preorder-traversal.png))
**The order:** Root -> Left -> Right