class Node { String key; String name; int age; Node left; Node right; Node(String k, String nm, int a,