-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaxPathSum.java
42 lines (40 loc) · 1.12 KB
/
maxPathSum.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
public class maxPathSum {
static class BinaryTree {
int data;
BinaryTree left;
BinaryTree right;
BinaryTree(){
}
BinaryTree(int d){
this.data = d;
this.left = null;
this.right = null;
}
};
private static BinaryTree root;
private static int res = Integer.MIN_VALUE;
private static int maxPathSum(BinaryTree root){
if(root == null){
return 0;
}
int leftSum = maxPathSum(root.left);
int rightSum = maxPathSum(root.right);
int ms = Math.max(Math.max(leftSum, rightSum)+ root.data, root.data);
int max = Math.max(ms, leftSum+rightSum+root.data);
res = Math.max(res, max);
return ms;
}
public static void main(String args[]){
root = new BinaryTree(10);
root.left = new BinaryTree(3);
root.left.left = new BinaryTree(2);
root.left.left.left = new BinaryTree(1);
root.left.left.right = new BinaryTree(4);
root.right = new BinaryTree(9);
root.right.right = new BinaryTree(7);
root.right.right.right = new BinaryTree(6);
root.right.right.left = new BinaryTree(5);
maxPathSum(root);
System.out.print(res+" ");
}
}