[LeetCode] 426. Convert BST to Sorted Doubly Linked List
Problem
Convert a BST to a sorted circular doubly-linked list in-place. Think of the left and right pointers as synonymous to the previous and next pointers in a doubly-linked list.
Let's take the following BST as an example, it may help you understand the problem better:
We want to transform this BST into a circular doubly linked list. Each node in a doubly linked list has a predecessor and successor. For a circular doubly linked list, the predecessor of the first element is the last element, and the successor of the last element is the first element.
The figure below shows the circular doubly linked list for the BST above. The "head" symbol means the node it points to is the smallest element of the linked list.
Specifically, we want to do the transformation in place. After the transformation, the left pointer of the tree node should point to its predecessor, and the right pointer should point to its successor. We should return the pointer to the first element of the linked list.
The figure below shows the transformed BST. The solid line indicates the successor relationship, while the dashed line means the predecessor relationship.
Solution
/*
// Definition for a Node.
class Node {
public int val;
public Node left;
public Node right;
public Node() {}
public Node(int _val,Node _left,Node _right) {
val = _val;
left = _left;
right = _right;
}
};
*/
class Solution {
public Node treeToDoublyList(Node root) {
if (root == null) return null;
Node left = treeToDoublyList(root.left);
Node right = treeToDoublyList(root.right);
root.left = root;
root.right = root;
return join( join(left, root), right );
}
private Node join(Node left, Node right) {
if (left == null) return right;
if (right == null) return left;
Node lastLeft = left.left;
Node lastRight = right.left;
lastLeft.right = right;
right.left = lastLeft;
lastRight.right = left;
left.left = lastRight;
return left;
}
}
Road to Glory
[LeetCode] 958. Check Completeness of a Binary Tree
linspiration阅读 1.9k
Java8的新特性
codecraft赞 32阅读 27.5k评论 1
一文彻底搞懂加密、数字签名和数字证书!
编程指北赞 71阅读 33.7k评论 20
Java11的新特性
codecraft赞 28阅读 19.3k评论 3
Java5的新特性
codecraft赞 13阅读 21.8k
Java9的新特性
codecraft赞 20阅读 15.4k
Java13的新特性
codecraft赞 17阅读 11.2k
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。