Update operations_on_datastructures/reverse_binary_tree.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Alvin Philips 2021-10-19 07:50:37 +05:30 committed by GitHub
parent 2208192e7f
commit 0421f55ab0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
/**
* @file
* @brief An implemention for [Reversing a Binary
* @brief Implementation for the [Reversing a Binary
* Tree](https://www.geeksforgeeks.org/reverse-tree-path/) recursively.
* @details A binary tree can be reversed by swapping the left and
* right child of a node at each node, starting from the root, and