//key operation on binary search tree using System; class GFG { public class node { public int key; public node left, right; } static node root = null ; //A utility function to //create a new BST node static node newNode( int item) { node temp = new node(); temp.key = item;...