leetcode: 114. 이 진 트 리 가 링크 로 펼 쳐 집 니 다 (자바)

이 진 트 리 를 지정 하여 제자리 에서 링크 로 펼 칩 니 다.
이 진 트 리
    1
   / \
  2   5
 / \   \
3   4   6

다음으로 펼 치기:
1
 \
  2
   \
    3
     \
      4
       \
        5
         \
          6
 public void flatten(TreeNode root) {
        if (root == null) return;
        if (root.left == null && root.right == null) return;
        //如果右子树为空左子树不为空
        if (root.left != null && root.right == null) {
            root.right = root.left;
            root.left = null;
        }
        //如果右子树不为空左子树为空对右子树进行递归
        if (root.left == null && root.right != null) {
            flatten(root.right);
            return;
        }
        //如果左右子树都不为空左右子树分别递归 递归完把左子树加进到右子树中
        if (root.left != null && root.right != null) {
            flatten(root.left);
            flatten(root.right);
            TreeNode left = root.left;
            TreeNode right = root.right;
            root.right = left;
            while (left.right != null) {
                left = left.right;
            }
            left.right = right;
            root.left = null;
        }

    }

 

좋은 웹페이지 즐겨찾기