logo

Crowdly

Browser

Додати до Chrome

The following numbers are inserted in a BST (in this order): 25 (0x2), 17 (0xF),...

✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.

The following numbers are inserted in a BST (in this order): 25 (0x2), 17 (0xF), 32 (0xA), 35 (0xC), 28 (0xB). 

What is the memory address of the left child of the node storing 32 after executing function Z  with the input parameters: the root of the above described tree and number 32?

function Z(root, x) 

   if (root==NULL) 

     return NULL 

   else 

         if (x < root->data) 

            root->left=Z(root->left,x) 

         else 

             if (x > root->data) 

                 root->right=Z(root->right,x) 

             else 

                 if (root->left== NULL and root->right==NULL) 

                     root=NULL 

                     return root 

                 else 

                     return root 

end function  

Більше питань подібних до цього

Хочете миттєвий доступ до всіх перевірених відповідей на learn.gold.ac.uk?

Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!

Browser

Додати до Chrome