Leetcode-recover Binary Search Tree

Source: Internet
Author: User

Topic:

Elements of a binary search tree (BST) is 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?

Ideas:

Middle Sequence traversal

 PackageBST; Public classRecoverbinarysearchtree {PrivateTreeNode prev =NULL; PrivateTreeNode Node1 =NULL; PrivateTreeNode Node2 =NULL;  Public voidrecovertree (TreeNode root) {recovertreeinternal (root);    Swap (Node1, node2); }        Private voidrecovertreeinternal (TreeNode root) {if(Root = =NULL)return;        Recovertreeinternal (Root.left); if(Prev! =NULL) {            if(Prev.val >=root.val) {if(Node1 = =NULL) Node1=prev; Node2=Root; }} prev=Root;            Recovertreeinternal (Root.right); }        Private voidSwap (TreeNode node1, TreeNode node2) {if(Node1! =NULL&& Node2! =NULL) {            intTMP =Node1.val; Node1.val=Node2.val; Node2.val=tmp; }    }         Public Static voidMain (string[] args) {//TODO auto-generated Method StubRecoverbinarysearchtree r =NewRecoverbinarysearchtree (); TreeNode Root=NewTreeNode (0); TreeNode Right=NewTreeNode (1); Root.left=Right ;    R.recovertree (root); }}

Leetcode-recover Binary Search Tree

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.