首页 > 代码库 > [LeetCode]Recover Binary Search Tree
[LeetCode]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?
【解析】
O(n) 空间的解法是,开一个指针数组,中序遍历,将节点指针依次存放到数组里,然后寻找两处逆向的位置,
先从前往后找第一个逆序的位置,然后从后往前找第二个逆序的位置,交换这两个指针的值。
【代码】
/********************************* * 日期:2014-12-10 * 作者:SJF0115 * 题号: Recover Binary Search Tree * 来源:https://oj.leetcode.com/problems/recover-binary-search-tree/ * 结果:AC * 来源:LeetCode * 总结: **********************************/ #include <iostream> #include <malloc.h> #include <algorithm> #include <vector> #include <stack> using namespace std; struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; void InOrder(TreeNode *root){ if(root == NULL){ return; } InOrder(root->left); cout<<root->val<<endl; InOrder(root->right); } class Solution { public: void recoverTree(TreeNode *root) { stack<TreeNode*> stack; vector<TreeNode*> v; // 错乱节点 TreeNode *first,*second; if(root == NULL){ return; } TreeNode *p = root; // 中序遍历 while(p != NULL || !stack.empty()){ // 不空一直向左子树走 if(p){ stack.push(p); p = p->left; } // 转向右子树 else{ p = stack.top(); stack.pop(); v.push_back(p); p = p->right; }//if }//while // 从前向后遍历 for(int i = 0;i < v.size();i++){ if((v[i])->val > (v[i+1])->val){ first = v[i]; break; } } // 从后向前遍历 for(int i = v.size()-1;i >= 0;i--){ if((v[i])->val < (v[i-1])->val){ second = v[i]; break; } } // 交换错误节点 /*int tmp; tmp = first->val; first->val = second->val; second->val = tmp;*/ swap(first->val,second->val); } }; //按先序序列创建二叉树 int CreateBTree(TreeNode* &T){ char data; //按先序次序输入二叉树中结点的值(一个字符),‘#’表示空树 cin>>data; if(data =http://www.mamicode.com/= '#'){>
[LeetCode]Recover Binary Search Tree
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。