“invertir un árbol binario” Código de respuesta

invertir un árbol binario

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution {
public:
    TreeNode* invertTree(TreeNode* root) {
        if(root==NULL){
            return 0;
        }
        invertTree(root->left);
        invertTree(root->right);
        swap(root->left,root->right);
        return root;
    }
};
Mridu Pawan

Cómo invertir un árbol binario

hi ahmad 
Fantastic Flatworm

Respuestas similares a “invertir un árbol binario”

Preguntas similares a “invertir un árbol binario”

Más respuestas relacionadas con “invertir un árbol binario” en C++

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código