257.Binary Tree Paths
Posted 我的名字叫周周
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了257.Binary Tree Paths相关的知识,希望对你有一定的参考价值。
/* * 257.Binary Tree Paths * 2016-6-21 By mingyang * 这个题目吧,刚开始想用backtracking来做,后面看网上都不用回溯,因为可以直接传string这个参数 * 原理都一样的,而且更简单了。 */ public List<String> binaryTreePaths(TreeNode root) { List<String> res = new ArrayList<String>(); if (root != null) dfs(root, "", res); return res; } private void dfs(TreeNode root, String path, List<String> res) { if (root.left == null && root.right == null) res.add(path + root.val); if (root.left != null) dfs(root.left, path + root.val + "->", res); if (root.right != null) dfs(root.right, path + root.val + "->", res); }
以上是关于257.Binary Tree Paths的主要内容,如果未能解决你的问题,请参考以下文章
Java [Leetcode 257]Binary Tree Paths