Java打印树的所有路径

Posted yayun0516

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java打印树的所有路径相关的知识,希望对你有一定的参考价值。

        public boolean hasPathSum(TreeNode root, int sum) 
            List<Integer> list = new ArrayList<>();
            dfs(root, list);
            List<String> strings = new ArrayList<>();
            helper(root, root.val + "", strings);
            System.out.println(strings.toString());
            return true;
        

        public void helper(TreeNode root, String path, List<String> result) 
            if (root == null) 
                return;
            

            if (root.left == null && root.right == null) 
                result.add(path);
                return;
            

            if (root.left != null) 
                helper(root.left, path + "->" + root.left.val, result);
            

            if (root.right != null) 
                helper(root.right, path + "->" + root.right.val, result);
            
        



输出list集合:
  List<List<Integer>> results = new ArrayList<>();
        public boolean hasPathSum(TreeNode root, int sum) 
            List<Integer> list = new ArrayList<>();
            dfs(root, list);
            System.out.println(results.toString());
            return true;
        
        


        private void dfs(TreeNode root, List<Integer> list) 
            if (root == null) 
                return;
            
            if (root.left == null && root.right == null) 
                results.add(list);
            
            list.add(root.val);
            if (root.left != null) 
                dfs(root.left, new ArrayList<>(list));
            
            if (root.right != null) 
                dfs(root.right, new ArrayList<>(list));
            
        

 

以上是关于Java打印树的所有路径的主要内容,如果未能解决你的问题,请参考以下文章

打印树的每个叶子路径而不递归

python打印二叉树所有路径的主函数怎样写

剑指offer 输入一颗二叉树的跟节点和一个整数,打印出二叉树中结点值的和为输入整数的所有路径。路径定义为从树的根结点开始往下一直到叶结点所经过的结点形成一条路径。(注意: 在返回值的list中,数组

剑指offer24 二叉树中和为某一值的路径

Java 求解二叉树的所有路径

二叉树和的路径