码迷,mamicode.com
首页 > 其他好文 > 详细

【树】114. 二叉树展开为链表

时间:2020-05-02 15:18:35      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:mamicode   The   nal   png   public   idt   str   poi   efi   

题目:

技术图片

 

 

 

解答:

技术图片

 

 

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 8  *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 9  *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
10  * };
11  */
12 class Solution {
13 public:
14     void flatten(TreeNode *root)
15     {
16         if (root == NULL)
17         {
18             return;
19         }
20 
21         TreeNode* left = root->left;
22         TreeNode* right = root->right;
23     
24         if (left)
25         {
26             root->right = left;
27             root->left = NULL;
28     
29             TreeNode* rightmost = left;
30             while(rightmost->right)
31             {
32                 rightmost = rightmost->right;
33             }
34             
35             // point the right most to the original right child
36             rightmost->right = right;
37         }
38         flatten(root->right);
39     }
40 };

 

【树】114. 二叉树展开为链表

标签:mamicode   The   nal   png   public   idt   str   poi   efi   

原文地址:https://www.cnblogs.com/ocpc/p/12817767.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!