Recover Binary Search Tree

题目

Two elements of a binary search tree (BST) are swapped by mistake.

Recover the tree without changing its structure.

Note:
A solution using O( n ) space is pretty straight forward. Could you devise a constant space solution?

方法

利用BST中序遍历是一个有序的序列。
中序遍历BST,遇到顺序错误的则标记,找到两个错误,交换其值即可。
若只找到一个,则说明第一个标记的后面的结点,是错误的。
    public void recoverTree(TreeNode root) {
        Stack<TreeNode> stack = new Stack<TreeNode>();
        TreeNode node = root;
        TreeNode first = null;
        TreeNode second = null;
        TreeNode last = null;
        while (node != null || !stack.isEmpty()) {
            while(node != null) {
                stack.push(node);
                node = node.left;
            }
            TreeNode curNode = stack.pop();
            if (last == null) {
                last = curNode;
            } else {
                if (last.val > curNode.val) {
                    if (first == null) {
                        first = last;
                        second = curNode;
                    } else {
                        second = curNode;
                        break;
                    }
                }
                last = curNode;
            }
            node = curNode.right;
        }
        
        int temp = first.val;
        first.val = second.val;
        second.val = temp;
    }


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值