LintCode - 175.두 갈래 나무를 뒤집다

888 단어 LintCode
두 갈래 나무 한 그루를 뒤집다
당신은 실제 면접에서 이 문제를 만난 적이 있습니까? 
Yes
예제
  1         1
 / \       / \
2   3  => 3   2
   /       \
  4         4
/**
 * Definition of TreeNode:
 * class TreeNode {
 * public:
 *     int val;
 *     TreeNode *left, *right;
 *     TreeNode(int val) {
 *         this->val = val;
 *         this->left = this->right = NULL;
 *     }
 * }
 */
class Solution {
public:
    /**
     * @param root: a TreeNode, the root of the binary tree
     * @return: nothing
     */
    void invertBinaryTree(TreeNode *root) {
        // write your code here
        if( root == NULL ) return;
        
        TreeNode* node = root->left;
        root->left = root->right;
        root->right = node;
        
        invertBinaryTree( root->left );
        invertBinaryTree( root->right );
    }
};

좋은 웹페이지 즐겨찾기