This file contains 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
//Day 22 of HackerRank 30 Days of Code challenge: Find height of binary search tree | |
class BSTHeight { | |
static int height = -1; | |
static int maxHeight = -1; | |
public static int getHeight(Node root){ | |
findMaxHeight(root); | |
return maxHeight; | |
} | |
private static void findMaxHeight(Node node) { | |
height++; //go down the tree | |
//System.out.println("data: " + node.data + ", height: " + height); | |
if(height > maxHeight) { | |
maxHeight = height; | |
//System.out.println("maxHeight: " + maxHeight); | |
} | |
if(node.left != null) { | |
getHeight(node.left); | |
} | |
if(node.right != null) { | |
getHeight(node.right); | |
} | |
height--; //go up the tree | |
} | |
} |
No comments:
Post a Comment