Last active
May 27, 2018 19:53
-
-
Save thmain/8f44f2c78f3746f041c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class DiameterOfTree { | |
int diameter = 0; | |
// here in improved solution, we calculate the height and diameter for every | |
// node in same iteration | |
// every Node will return 2 values, diameter and height wrt to the | |
// particular node | |
public int[] Diameter(Node root) { | |
int DandH[] = { 0, 0 }; // initialize the height (DandH[0]) and diameter | |
// as 0 (DandH[1]) | |
if (root != null) { | |
int[] leftResult = Diameter(root.left); | |
int[] rightResult = Diameter(root.right); | |
int height = Math.max(leftResult[0], rightResult[0]) + 1; | |
int leftDiameter = leftResult[1]; | |
int rightDiameter = rightResult[1]; | |
int rootDiameter = leftResult[0] + rightResult[0] + 1; | |
int finalDiameter = getMax(leftDiameter, rightDiameter, | |
rootDiameter); | |
// prepare the DandH[] | |
DandH[0] = height; // update the height | |
DandH[1] = finalDiameter; | |
return DandH; | |
} | |
return DandH; | |
} | |
public int getMax(int a, int b, int c) { | |
return Math.max(a, Math.max(b, c)); | |
} | |
public static void main(String[] args) { | |
Node root = new Node(1); | |
root.left = new Node(2); | |
root.right = new Node(3); | |
root.left.left = new Node(4); | |
root.left.right = new Node(5); | |
root.left.right.left = new Node(6); | |
root.left.right.left.right = new Node(7); | |
root.left.left.left = new Node(8); | |
DiameterOfTree d = new DiameterOfTree(); | |
System.out.println("Diameter of Tree: " + d.Diameter(root)[1]); | |
} | |
} | |
class Node { | |
int data; | |
Node left; | |
Node right; | |
public Node(int data) { | |
this.data = data; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment