LeetCode-面试算法经典-Java实现114-Flatten Binary Tree to Linked List(二叉树转单链表)
Posted wzjhoutai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode-面试算法经典-Java实现114-Flatten Binary Tree to Linked List(二叉树转单链表)相关的知识,希望对你有一定的参考价值。
【114-Flatten Binary Tree to Linked List(二叉树转单链表)】
【LeetCode-面试算法经典-Java实现】【全部题目文件夹索引】
原题
Given a binary tree, flatten it to a linked list in-place.
For example,
Given
1
/ 2 5
/ \ 3 4 6
The flattened tree should look like:
1
2
3
4
5
6
题目大意
给定一棵二叉树。将它转成单链表,使用原地算法。
解题思路
从根结点(root)找左子树(l)的最右子结点(x)。将root的右子树(r)接到x的右子树上(x的右子树为空)。root的左子树总体调整为右子树,root的左子树赋空。
代码实现
树结点类
public class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) { val = x; }
}
算法实现类
public class Solution {
public void flatten(TreeNode root) {
TreeNode head = new TreeNode(-1);
head.right = root;
TreeNode node = head;
while (node.right != null) {
node = node.right;
if (node.left != null) {
TreeNode end = node.left;
while (end.right != null) {
end = end.right;
}
TreeNode tmp = node.right;
node.right = node.left;
node.left = null;
end.right = tmp;
}
}
head.right = null; // 去掉引用方便垃圾回收
}
}
评測结果
点击图片,鼠标不释放,拖动一段位置,释放后在新的窗体中查看完整图片。
特别说明
欢迎转载,转载请注明出处【http://blog.csdn.net/derrantcm/article/details/47438085】
以上是关于LeetCode-面试算法经典-Java实现114-Flatten Binary Tree to Linked List(二叉树转单链表)的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode-面试算法经典-Java实现120-Triangle(三角形)
LeetCode-面试算法经典-Java实现101-Symmetric Tree(对称树)
LeetCode-面试算法经典-Java实现139-Word Break(单词拆分)
LeetCode-面试算法经典-Java实现054-Spiral Matrix(螺旋矩阵)