Path Sum

问题来源:https://leetcode.com/problems/path-sum/

package cn.edu.shu;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

/**
 * 
 * <p>
 * ClassName PathSum
 * </p>
 * <p>
 * Description Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values
 * along the path equals the given sum. For example: Given the below binary tree and sum = 22, 5 / \ 4 8 / / \ 11 13 4 / \ \ 7 2 1
 * return true, as there exist a root-to-leaf path 5->4->11->2 which sum is 22.
 * </p>
 * 
 * @author TKPad wangx89@126.com
 *         <p>
 *         Date 2015年3月27日 下午3:07:37
 *         </p>
 * @version V1.0.0
 *
 */
class TreeNode {
    int val;
    TreeNode left;
    TreeNode right;

    TreeNode(int x) {
        val = x;
    }
}

// 这是比较笨的一种方法,思路主要是先使用深度优先遍历,获取到每一个到叶子节点的完整路径,然后计算该条完整路径上的节点的和
public class PathSum {
    ArrayList<Integer> list = new ArrayList<Integer>();
    List<ArrayList<Integer>> listAll = new ArrayList<ArrayList<Integer>>();

    public boolean hasPathSum(TreeNode root, int sum) {
        depthFirst(root);
        Iterator<ArrayList<Integer>> iterator = listAll.iterator();
        while (iterator.hasNext()) {
            ArrayList<Integer> next = iterator.next();
            Iterator<Integer> iterator2 = next.iterator();
            int result = 0;
            while (iterator2.hasNext()) {
                Integer next2 = iterator2.next();
                result += next2;
            }
            if (result == sum) {
                return true;
            }
        }
        return false;
    }

    public TreeNode depthFirst(TreeNode root) {
        if (null == root) {
            return null;
        }
        list.add(root.val);
        if (root.left == null && root.right == null) {
            // 以list构造一个新的对象,这样可以将其加入List集合,而不会更改到原引用的值
            ArrayList<Integer> temp = new ArrayList<Integer>(list);
            listAll.add(temp);
        }
        if (root.left != null) {
            depthFirst(root.left);
            list.remove(list.size() - 1);
        }

        if (root.right != null) {
            depthFirst(root.right);
            list.remove(list.size() - 1);
        }
        return root;
    }

    public static void main(String[] args) {
        TreeNode tn1 = new TreeNode(5);
        TreeNode tn2 = new TreeNode(4);
        TreeNode tn3 = new TreeNode(8);
        TreeNode tn4 = new TreeNode(11);
        TreeNode tn5 = new TreeNode(13);
        TreeNode tn6 = new TreeNode(4);
        TreeNode tn7 = new TreeNode(7);
        TreeNode tn8 = new TreeNode(2);
        TreeNode tn9 = new TreeNode(1);
        tn1.left = tn2;
        tn1.right = tn3;
        tn2.left = tn4;
        tn4.left = tn7;
        tn4.right = tn8;
        tn3.left = tn5;
        tn3.right = tn6;
        tn6.right = tn9;
        boolean hasPathSum = new PathSum().hasPathSum(null, 22);
        System.out.println(hasPathSum);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值