This commit is contained in:
Sainnhe Park 2023-01-30 20:18:01 +08:00
parent 038fa42883
commit eb1bbfb9c6
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#include "s0226_invert_binary_tree.hpp"
TreeNode *S0226::invertTree(TreeNode *root) {
if (root == nullptr) return nullptr;
TreeNode *tmp = root->left;
root->left = invertTree(root->right);
root->right = invertTree(tmp);
return root;
}