Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

226 翻转二叉树 中序遍历 #509

Closed
TanYoh opened this issue Jul 21, 2021 · 0 comments
Closed

226 翻转二叉树 中序遍历 #509

TanYoh opened this issue Jul 21, 2021 · 0 comments

Comments

@TanYoh
Copy link

TanYoh commented Jul 21, 2021

翻转二叉树可用中序遍历来做,只是翻转之后依然进入左子树递归

class Solution {
public:
    void invert (TreeNode* cur){
        if (cur!=nullptr){
            invert(cur->left);
            swap(cur->left, cur->right);
            invert(cur->left);
        }
    }
    TreeNode* invertTree(TreeNode* root) {
        invert(root);
        return root;
    }
};
@TanYoh TanYoh closed this as completed Jul 21, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant