GinaMae4048 GinaMae4048 23-04-2024 Computers and Technology contestada – setting upStudy the class definitions below:class Node{// attributesint ID;String name;Node left; // left childNode right; // right child}class BinarySearchTree{// attributesNode root;// methodssearch(int key, Node root);void insert(int key, Node root);void delete(int key, Node root);}1.1 Create two files Node.java and BinarySearchTree.java