Flatten Binary Tree to Linked List(이차 트리 회전 전 서열 체인 테이블)[leetcode]

제목:
Given a binary tree, flatten it to a linked list in-place.
For example, Given
         1
        / \
       2   5
      / \   \
     3   4   6

The flattened tree should look like:
   1
    \
     2
      \
       3
        \
         4
          \
           5
            \
             6

Hints:
If you notice carefully in the flattened tree, each node's right child points to the next node of a pre-order traversal.
바로 앞 순서대로 원래의 나무를 체인 시계로 바꾸는 것이다.
귀속 처리, 귀속 완료 후 오른쪽 나무를 처리된 왼쪽 나무에 연결한 다음에 왼쪽 나무를 오른쪽 나무로 바꾸고 바늘이 비어 있습니다.
/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    void flatten(TreeNode *root) {
        if(!root)return;
        flatten(root->left);
        flatten(root->right);
        TreeNode *p=root;
        if(p->left==NULL)return;
        else p=p->left;
        while(p->right!=NULL)p=p->right;
        p->right=root->right;
        root->right=root->left;        
        root->left=NULL;
    }
};

좋은 웹페이지 즐겨찾기