码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode - Recover Binary Search Tree

时间:2014-10-06 18:43:20      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   ar   for   sp   c   on   amp   

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);
	}
};


leetcode - Recover Binary Search Tree

标签:style   color   io   ar   for   sp   c   on   amp   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!