二叉搜索树转换为双向链表 binary search tree to double-linked list

本文介绍了一种经典的面试题目解决方案:如何通过递归中序遍历的方式将一棵二叉树转换为双向链表。文章提供了Java代码实现,并详细解释了递归过程中的关键步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

经典的面试题目,思路是递归中序遍历,每次递归返回linked list中最后的一个元素lastNode,每次递归调用过程中要接受lastNode作为参数,因为是中序遍历,所以将lastNode作为参数传进去之后,总是先访问到最小的node。

代码如下 In Java:

class BinaryTreeNode {
	BinaryTreeNode left;  // previous
	BinaryTreeNode right; // next
	int value;
}

BinaryTreeNode buildList(BinaryTreeNode root) {
	BinaryTreeNode lastNode = buildListRecursively(root, null);
	if (lastNode == null)
		return null;
	BinaryTreeNode head = lastNode;
	While(head.left != null) {
		head = head.left;
	return head;
}

BinaryTreeNode buildListRecursively(BinaryTreeNode root, BinaryTreeNode lastNode) {
	if (root == null)
		return null;
	if (root.left != null) //Here we need to check if child is null or not, if it is null, then we don't need to update the lastNode.
		lastNode = buildListRecursively(root.left, lastNode);
	root.left = lastNode;
	if (lastNode != null) //Always check a reference if it is null before using it.
		lastNode.right = root;
	lastNode = root;
	if (root.right != null)//Here we need to check if child is null or not, if it is null, then we don't need to update the lastNode.
		lastNode = buildListRecursively(root.right, lastNode);
	return lastNode;
}

默写几遍吧。。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值