• 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 }
  • 相关阅读:
    玩转xss
    Anonim小白成长计划
    mssql注入与绕过
    了解mssql数据库
    2020年度学习规划
    access 注入
    bypasswaf 之报错注入
    bypasswaf之盲注
    sql注入常用函数与bypasswaf
    一篇关于数据库的另类操作
  • 原文地址:https://www.cnblogs.com/-wang-cheng/p/4909780.html
Copyright © 2020-2023  润新知