题目描述(简单难度)
输出从根到叶子节点的所有路径。
思路分析
很明显是一个二叉树遍历的问题,我们可以用递归形式的 DFS
,使用栈形式的 DFS
,使用队列形式的 BFS
。
和 112 题 差不多,这里就不详细说了。
只给出 DFS
递归的代码了,其他代码的话可以参考 这里。
解法一 DFS
用 result
保存所有解,到达叶子节点的时候就将结果保存起来。
public List<String> binaryTreePaths(TreeNode root) {
List<String> result = new ArrayList<>();
if(root == null){
return result;
}
binaryTreePaths(root, "", result);
return result;
}
private void binaryTreePaths(TreeNode root, String temp, List<String> result) {
if (root.left == null && root.right == null) {
temp = temp + root.val;
result.add(temp);
return;
}
if (root.left != null) {
binaryTreePaths(root.left, temp + root.val + "->", result);
}
if (root.right != null) {
binaryTreePaths(root.right, temp + root.val + "->", result);
}
}
总
考察的就是二叉树的遍历,很基础的一道题。
添加好友一起进步~
如果觉得有帮助的话,可以点击 这里 给一个 star 哦 ^^
如果想系统的学习数据结构和算法,强烈推荐一个我之前学过的课程,可以点击 这里 查看详情
当前内容版权归 wind-liang 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 wind-liang .