mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
Updated documentation wording
This commit is contained in:
parent
14a26c3f2e
commit
39bb9b9a0d
@ -1,12 +1,8 @@
|
||||
/**
|
||||
* @file
|
||||
<<<<<<< Updated upstream
|
||||
* @brief Implementation for the [Reversing a Binary
|
||||
* Tree](https://www.geeksforgeeks.org/reverse-tree-path/) recursively algorithm.
|
||||
=======
|
||||
* @brief Implemention for [Reversing a Binary
|
||||
* Tree](https://www.geeksforgeeks.org/reverse-tree-path/) recursively.
|
||||
>>>>>>> Stashed changes
|
||||
* Tree](https://www.geeksforgeeks.org/reverse-tree-path/) recursively
|
||||
* algorithm.
|
||||
* @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
|
||||
* cascading below. This solution aims to provide an implementation of
|
||||
@ -27,7 +23,8 @@ namespace operations_on_datastructures {
|
||||
|
||||
/**
|
||||
* @namespace reverse_binary_tree
|
||||
* @brief Functions for the [Reverse a Binary Tree](https://www.geeksforgeeks.org/reverse-tree-path/) implementation
|
||||
* @brief Functions for the [Reverse a Binary
|
||||
* Tree](https://www.geeksforgeeks.org/reverse-tree-path/) implementation
|
||||
*/
|
||||
namespace reverse_binary_tree {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user