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

114. 二叉树展开为链表

时间:2020-04-01 16:26:04      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:def   null   ini   roo   没有   tree node   public   col   展开   

 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 
11 class Solution 
12 {
13 public:
14     void flatten(TreeNode* root) 
15     {
16         if(!root) return;
17         flatten(root->left);
18         flatten(root->right);
19         //左右子树皆已转换成链表
20         TreeNode* temp = root->right;//备份扁平后的右孩子
21         root->right = root->left;//右孩子为左孩子
22         root->left = NULL;//左孩子为空
23         while(root->right)//直到它没有右孩子
24         {
25             root = root->right;
26         }
27         root->right = temp;//此时的右孩子为备份的
28     }
29 };

 

114. 二叉树展开为链表

标签:def   null   ini   roo   没有   tree node   public   col   展开   

原文地址:https://www.cnblogs.com/yuhong1103/p/12613297.html

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