leetcode - Recover Binary Search Tree

时间:2014-10-06 17:25:30   收藏:0   阅读:275

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?

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
struct TreeNode
{
	int val;
	TreeNode *left;
	TreeNode *right;
	TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
public:
    void recoverTree(TreeNode *root) {
		 pre = n1 = n2 = NULL;
		 dfs(root);
		 n1->val ^= n2->val;
		 n2->val ^= n1->val;
		 n1->val ^= n2->val;
    }
private:
	TreeNode *pre,*n1,*n2;
	void dfs(TreeNode *root)
	{
		if(root == NULL) return;
		dfs(root->left);
		if(pre != NULL &&pre->val > root->val)
		{
			n1 = root;
			if(n2 == NULL) n2 = pre;
		}
		pre = root;
		dfs(root->right);
	}
};


原文:http://blog.csdn.net/akibatakuya/article/details/39828899

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!