//Find Method public TreeNode Find(int data) { if (root != null) { return(root.Find(data)); } return(null); }