leetcode_99

淳属虚构 · · 736 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

Golang:

思路:这题最简单的思路,因为二叉搜索树中序遍历的特性,使得我们可以遍历所有值,找到被交换的那两位,然后把他们重新交换回来。这里给出morris算法实现(可能是这题真正最大的价值)

代码如下:

func recoverTree(root *TreeNode) {
    //还是应该理解为找逆序对,使用中序遍历
    var pre, x, y *TreeNode
    for root != nil {
        if root.Left != nil {
            node := root.Left
            for node.Right != nil && node.Right != root {
                node = node.Right
            }
            if node.Right == nil {
                node.Right = root
                root = root.Left
            } else {
                if pre != nil && root.Val < pre.Val {
                    y = root
                    if x == nil {
                        x = pre
                    }
                }
                pre = root
                node.Right = nil
                root = root.Right
            }
        } else {
            if pre != nil && root.Val < pre.Val {
                y = root
                if x == nil {
                    x = pre
                }
            }
            pre = root
            root = root.Right
        }
    }
    x.Val, y.Val = y.Val, x.Val
}

有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:淳属虚构

查看原文:leetcode_99

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

736 次点击  
加入收藏 微博
上一篇:leetcode_98
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传