LeetCode OJ:Flatten Binary Tree to Linked List(捋平二叉树)

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

也就是说用先序遍历的方式将所有的节点都放到右侧来,我这里的方法的主要思想就是每次左侧存在节点的时候就将其原封不动的搬移到右侧来,代码如下:

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */
10 class Solution {
11 public:
12     void flatten(TreeNode* root) {
13         while(root){
14             if(root->left){
15                 TreeNode * leftBegin = root->left;
16                 root->left = NULL;
17                 TreeNode * leftEnd = leftBegin;
18                 while(leftEnd->right)
19                     leftEnd = leftEnd->right;
20                 TreeNode * tmpRight = root->right;
21                 root->right = leftBegin;
22                 leftEnd->right = tmpRight;
23             }
24             root = root->right;
25         }
26     }
27 };

 用java写了一遍,方法与上面基本相同,代码如下:

 1 /**
 2  * Definition for a binary tree node.
 3  * public class TreeNode {
 4  *     int val;
 5  *     TreeNode left;
 6  *     TreeNode right;
 7  *     TreeNode(int x) { val = x; }
 8  * }
 9  */
10 public class Solution {
11     public void flatten(TreeNode root) {
12         while(root != null){
13             if(root.left != null){
14                 TreeNode tmp = root.right;
15                 root.right = root.left;
16                 TreeNode tmpRight = root.right;
17                 while(tmpRight.right != null)
18                     tmpRight = tmpRight.right;
19                 tmpRight.right = tmp;
20                 root.left = null;
21             }
22             root = root.right;
23         }
24     }
25 }

 

转载于:https://www.cnblogs.com/-wang-cheng/p/4909780.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值