力扣hot100 二叉树展开为链表 递归 特殊遍历

👨‍🏫 题目地址

👩‍🏫 参考题解

😋 将左子树插入到右子树上

java 复制代码
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
	public void flatten(TreeNode root)
	{
		while (root != null)
		{
			if (root.left == null)// 找到具有左节点的树
				root = root.right;
			else
			{
				TreeNode pre = root.left;// 当前左子树的先序遍历序列的最后一个结点
				while (pre.right != null)
					pre = pre.right;
				pre.right = root.right;// 将当前右子树接在左子树的最右结点的右孩子上
				root.right = root.left;// 左子树插入当前树的右子树的位置上
				root.left = null;
				root = root.right;// 递归处理每一个拥有左子树的结点
			}
		}
	}
}

👩‍🏫 参考题解

😋 递归

null<-6<-5<-4<-3<-2<-1

java 复制代码
class Solution {
	public void flatten(TreeNode root) {
		helper(root);
	}
	TreeNode pre = null;
	void helper(TreeNode root) {
		if(root==null) {
			return;
		}
		//右节点-左节点-根节点 这种顺序正好跟前序遍历相反
		//用pre节点作为媒介,将遍历到的节点前后串联起来
		helper(root.right);
		helper(root.left);
		root.left = null;
		root.right = pre;
		pre = root;
	}
}
相关推荐
J***793931 分钟前
后端在分布式系统中的数据分片
算法·哈希算法
Dream it possible!2 小时前
LeetCode 面试经典 150_二叉搜索树_二叉搜索树中第 K 小的元素(86_230_C++_中等)
c++·leetcode·面试
sin_hielo2 小时前
leetcode 2872
数据结构·算法·leetcode
dragoooon342 小时前
[优选算法专题八.分治-归并 ——NO.49 翻转对]
算法
AI科技星3 小时前
为什么宇宙无限大?
开发语言·数据结构·经验分享·线性代数·算法
Zero-Talent3 小时前
位运算算法
算法
不穿格子的程序员3 小时前
从零开始刷算法——双指针-三数之和&接雨水
算法·双指针
无限进步_4 小时前
C语言数组元素删除算法详解:从基础实现到性能优化
c语言·开发语言·windows·git·算法·github·visual studio
松涛和鸣4 小时前
16、C 语言高级指针与结构体
linux·c语言·开发语言·数据结构·git·算法
Booksort4 小时前
【LeetCode】算法技巧专题(持续更新)
算法·leetcode·职场和发展