What should be the name of the following function?NODE* aBST_ADT_Operation (BST_TREE* tree, NODE* root, NODE* newPtr){   if (!root)      return newPtr;   if (tree->compare(newPtr->dataPtr,root->dataPtr) < 0)   {      root->left = aBST_ADT_Operation(tree, root->left, newPtr);      return root;   } // new < node   else   {      root->right = aBST_ADT_Operation(tree, root->right, newPtr);      return root;   }   return root;}

A. BST_Create
B. BST_Delete
C. BST_Insert
D. _insert


Answer: D

Computer Science & Information Technology

You might also like to view...

You must do the following before using an array:

a) declare then reference the array b) initialize then declare the array c) initialize then reference the array d) declare then initialize the array

Computer Science & Information Technology

Calculations are normally performed by_________statements.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

You can create a navigation form in ________ or in Layout view

A) Design view B) Form view C) Object view D) Table view

Computer Science & Information Technology

Effective charts never overwhelm an audience

Indicate whether the statement is true or false

Computer Science & Information Technology