码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-07-09 11:04:52      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:value   sys   div   ack   节点   code   ret   ==   else   

题目:输入一棵二叉树和一个整数,打印出二叉树中节点值的和为输入整数的所有路径。从树的根节点开始往下一直到叶节点所经过的节点形成一条路径。

public void findPath(Node node,int k){
        if(node == null) return;
        Stack<Integer> stack = new Stack<Integer>();
        findPath(node,k,stack);
    }
    public void findPath(Node root,int k,Stack<Integer> path){
        if(root == null) return ;
        if(root.left == null && root.right ==null){
            if(root.value == k){
                for(int i:path){
                    System.out.print(i+" ");
                }
                System.out.print(root.value);
            }
        }else{
            stack.push(root.value);
            finPath(root.left,k-root.value,path);
            findPath(root.right,k-root.value,path);
        }
    }

 

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

标签:value   sys   div   ack   节点   code   ret   ==   else   

原文地址:https://www.cnblogs.com/yingpu/p/9282044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!