int height(BST& t) { // PRE: t is a Binary Search Tree // POST: outputs the height of t. // You will need to use the methods getLeftSubTree, getRightSubTree and isEmpty // defined in the file BST_practical. // You will also need to write an extra function which you should define in this file. }