The following sequence of numbers will be inserted into a tree data structure:   500, 250, 750, 1000, 2000, 25, 1, 2, 50, 249, 3000, 900, 875, 880, 800, 200, 600 Answer the following questions: What will the binary search tree look like after the numbers are inserted in the given order? From the tree you finished in 1), what will the tree look like each time after the following numbers are deleted (use the delete algorithm discussed in class where the successor is found in the right child subtree): Delete(3000) Delete(50) Delete(750) From the tree you finished in 2), what will the preorder and postorder traversals look like?

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Any one help me the following questions

 

The following sequence of numbers will be inserted into a tree data structure:

 

500, 250, 750, 1000, 2000, 25, 1, 2, 50, 249, 3000, 900, 875, 880, 800, 200, 600

Answer the following questions:

  • What will the binary search tree look like after the numbers are inserted in the given order?
  • From the tree you finished in 1), what will the tree look like each time after the following numbers are deleted (use the delete algorithm discussed in class where the successor is found in the right child subtree):
    1. Delete(3000)
    2. Delete(50)
    3. Delete(750)
  • From the tree you finished in 2), what will the preorder and postorder traversals look like?

 

 

Given the same sequence of numbers:

 

500, 250, 750, 1000, 2000, 25, 1, 2, 50, 249, 3000, 900, 875, 880, 800, 200, 600

Show the iterations of the following sorting algorithms applied this set:

 

  • Insertion
  • Selection
  • Quicksort (circle the pivot number each time the partition function is called)

 

 

Code Review Section

 

Your co-worker has developed a function to find the median value in an unsorted array with an odd number of elements. For arrays with an even number of elements, this function does not apply.

 

To normally find such a value would be to sort the array and then obtain the value at the middle index of the array. For example, [5 2 53 1 4], the median is 4 because when it is sorted, the array will be [1 2 4 5 53] and the value at the middle index is 4.

 

Your co-worker’s function uses the partition function that is the same function as the one the QuickSort algorithm uses. Here’s the code he shows you:

 

public static int[] array = {6, 1, 20, 10, 4};

 

public static int findMedian(int lo, int hi, int medianIndex)

{

      int partitionIndex = partition(lo, hi);

 

      if (medianIndex == partitionIndex)

            return partitionIndex;

 

      if (medianIndex > partitionIndex)

            return findMedian(partitionIndex + 1, hi, medianIndex);

      else

            return findMedian(lo, partitionIndex - 1, medianIndex);

}

 

public static void main (String args[])

{

      System.out.println(findMedian(0, 4, 2));

}

 

Upon reviewing the code, you find there is an error with it. Show your analysis by including the following:

 

  • Show what the current code will print on the screen and explain why it is wrong
  • Show the update(s) to the code you would make to fix the problem

 

A co-worker emails you and said she developed a recursive version for doing search in a binary search tree. Here’s the code for the function:

public boolean searchRecursive(Node current, int searchValue)

{

      if (current == null)

            return false;

     

if (current.data == searchValue)

            return true;

      else if (current.data > searchValue)

            return searchRecursive(current.right, searchValue);

      else

            return searchRecursive(current.left, searchValue);         

}

 

She’s not sure if there is an error or not because the code does compile. You analyze the code and respond to her as follows:

 

  • Draw a picture of what a binary search tree would look like after inserting values of 10, 15, 18, 13, 5, 1, and 8 in that order
  • Next, if you believe there is no error with the code, then show her how the code executes when searching for different values using the tree you made in step 1)
  • Or, if you believe there is an error with the code, then show her how the code executes when searching for different values using the tree you made in step 1). In addition, show her the code fix(es) that should be made to get it to work
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY