标签:定位 指针 class while convert root value java line
输入一棵二叉搜索树,将该二叉搜索树转换成一个排序的双向链表。要求不能创建任何新的结点,只能调整树中结点指针的指向。
1
.将左子树构造成双链表,并返回链表头节点。
2
.定位至左子树双链表最后一个节点。
3
.如果左子树链表不为空的话,将当前root追加到左子树链表。
4
.将右子树构造成双链表,并返回链表头节点。
5
.如果右子树链表不为空的话,将该链表追加到root节点之后。
6
.根据左子树链表是否为空确定返回的节点。
public class Solution { public TreeNode Convert(TreeNode pRootOfTree) { if(pRootOfTree == null) return null; TreeNode left = Convert(pRootOfTree.left); TreeNode temp = left; while(temp != null && temp.right != null){ // 在二叉树里,取左右节点的时候都要考虑当前节点是否为空 temp = temp.right; } if(temp != null){ temp.right = pRootOfTree; pRootOfTree.left = temp; } TreeNode right = Convert(pRootOfTree.right); if(right!=null){ right.left = pRootOfTree; pRootOfTree.right = right; } return left!=null?left:pRootOfTree; } }
标签:定位 指针 class while convert root value java line
原文地址:https://www.cnblogs.com/tendermelon/p/13068246.html