Fix a wrong comment in the tree postorder traversal (#5774)

This commit is contained in:
Radhika Shah
2024-10-15 15:56:10 +05:30
committed by GitHub
parent be70801aa2
commit 9f5478f599

View File

@ -281,7 +281,7 @@ public class BinaryTree {
} }
/** /**
* Prints rightChild - leftChild - root * Prints leftChild - rightChild - root
* *
* @param localRoot The local root of the binary tree * @param localRoot The local root of the binary tree
*/ */