力扣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;
	}
}
相关推荐
ChoSeitaku3 分钟前
链表交集相关算法题|AB链表公共元素生成链表C|AB链表交集存放于A|连续子序列|相交链表求交点位置(C)
数据结构·考研·链表
香菜大丸4 分钟前
链表的归并排序
数据结构·算法·链表
jrrz08284 分钟前
LeetCode 热题100(七)【链表】(1)
数据结构·c++·算法·leetcode·链表
oliveira-time16 分钟前
golang学习2
算法
南宫生1 小时前
贪心算法习题其四【力扣】【算法学习day.21】
学习·算法·leetcode·链表·贪心算法
懒惰才能让科技进步2 小时前
从零学习大模型(十二)-----基于梯度的重要性剪枝(Gradient-based Pruning)
人工智能·深度学习·学习·算法·chatgpt·transformer·剪枝
Ni-Guvara2 小时前
函数对象笔记
c++·算法
泉崎3 小时前
11.7比赛总结
数据结构·算法
你好helloworld3 小时前
滑动窗口最大值
数据结构·算法·leetcode
AI街潜水的八角3 小时前
基于C++的决策树C4.5机器学习算法(不调包)
c++·算法·决策树·机器学习