博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
156.Binary Tree Upside Down
阅读量:4947 次
发布时间:2019-06-11

本文共 785 字,大约阅读时间需要 2 分钟。

// Recursionclass Solution {public:    TreeNode *upsideDownBinaryTree(TreeNode *root) {        if (!root || !root->left) return root;        TreeNode *l = root->left, *r = root->right;        TreeNode *res = upsideDownBinaryTree(l);        l->left = r;        l->right = root;        root->left = NULL;        root->right = NULL;        return res;    }};
// Iterativeclass Solution {public:    TreeNode *upsideDownBinaryTree(TreeNode *root) {        TreeNode *cur = root, *pre = NULL, *next = NULL, *tmp = NULL;        while (cur) {            next = cur->left;            cur->left = tmp;            tmp = cur->right;            cur->right = pre;            pre = cur;            cur = next;        }        return pre;    }};

转载于:https://www.cnblogs.com/smallredness/p/10682104.html

你可能感兴趣的文章
C3P0 WARN: Establishing SSL connection without server's identity verification is not recommended
查看>>
CSUOJ 1541 There is No Alternative
查看>>
iPhone在日本最牛,在中国输得最慘
查看>>
2014百度之星资格赛的第二个问题
查看>>
动态方法决议 和 消息转发
查看>>
关于UI资源获取资源的好的网站
查看>>
Nginx代理访问提示ERR_CONTENT_LENGTH_MISMATCH异常的解决方案
查看>>
WPF自定义搜索框代码分享
查看>>
js 基础拓展
查看>>
Windows下常用测试命令
查看>>
SpringBoot访问html访问不了的问题
查看>>
{width=200px;height=300px;overflow:hidden}
查看>>
SDK提交到CocoaPods
查看>>
C#生成随机数
查看>>
Flask-jinja2
查看>>
【BZOJ3224】Tyvj 1728 普通平衡树 Splay
查看>>
java8 四大核心函数式接口Function、Consumer、Supplier、Predicate
查看>>
iOS 图片加载速度极限优化—FastImageCache解析
查看>>
类的声明和使用
查看>>
bzoj3196: Tyvj 1730 二逼平衡树
查看>>