标签:style blog class c code java
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?
public class Solution { public void recoverTree(TreeNode root) { if(root!=null){ Stack<TreeNode> stack = new Stack<TreeNode>(); TreeNode cur = root; int min=Integer.MIN_VALUE; int preint = Integer.MIN_VALUE; TreeNode pre=root; TreeNode after=pre; boolean bol = true; while(!stack.isEmpty()||cur!=null){ while(cur!=null){ stack.push(cur); cur=cur.left; } if(!stack.isEmpty()){ int temp = stack.peek().val; if(bol&&temp>preint){ preint = temp; pre=stack.peek(); } if(bol&&temp<preint){ bol=false; min=temp; after=stack.peek(); cur=stack.peek().right; stack.pop(); continue; } if(!bol&&temp<min){ min=temp; after=stack.peek(); } cur=stack.peek().right; stack.pop(); } } int tt = pre.val; pre.val=after.val; after.val=tt; } } }
【LeetCode】Recover Binary Search Tree,布布扣,bubuko.com
【LeetCode】Recover Binary Search Tree
标签:style blog class c code java
原文地址:http://www.cnblogs.com/yixianyixian/p/3740197.html