Question

What is the running time of Binary Search if we use it to search for a...

What is the running time of Binary Search if we use it to search for a number in a sorted linked list? Explain your answer

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Binary search works effectively for arrays, because in its each iteration it accesses the mid value(middle index of current array),
so, accessing mid value is performed in O(1) time in arrays, but in sorted linked list it will take O(n) to access it
hence complexity of binary search will become O(nlogn) in case of sorted linked list, //n for locating mid index, and logn for searching key

Add a comment
Know the answer?
Add Answer to:
What is the running time of Binary Search if we use it to search for a...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • We know that binary search on a sorted array of size n takes O(log n) time....

    We know that binary search on a sorted array of size n takes O(log n) time. Design a similar divide-and-conquer algorithm for searching in a sorted singly linked list of size n. Describe the steps of your algorithm in plain English. Write a recurrence equation for the runtime complexity. Solve the equation by the master theorem.

  • 1. What is the worst case time complexity of insertion into a binary search tree with...

    1. What is the worst case time complexity of insertion into a binary search tree with n elements? You should use the most accurate asymptotic notation for your answer. 2. A binary search tree is given in the following. Draw the resulting binary search tree (to the right of the given tree) after deleting the node with key value 8. 10 3. You have a sorted array B with n elements, where n is very large. Array C is obtained...

  • Binary Search

    Suppose we want to check if a sorted sequence A contains an element v.  For this, we can use Binary Search.  Binary Search compares the value at the midpoint of the sequence A with v and eliminates half of the sequence from further consideration.  The Binary Search algorithm repeats this procedure, halving the size of the remaining portion of the sequence each time. Write a recurrence for the runningtime of Binary search and solve this recurrence.

  • ## Codes must be in Python ## In a binary search tree What is worst case time complexity of the binary_search function? Provide an example binary search tree that exhibits worst case running time of...

    ## Codes must be in Python ## In a binary search tree What is worst case time complexity of the binary_search function? Provide an example binary search tree that exhibits worst case running time of binary_search function Write a function that prints elements in binary search tree in order

  • In C++ Given a pointer to the root of a binary search tree (has left, right,...

    In C++ Given a pointer to the root of a binary search tree (has left, right, and parent pointers as well as a data section ) write a function (or functions) which will return an STL list (you should not define this class, it’s already included) with all of the values from the tree in sorted order. Your code should run in theta(N) time. for the second part,.given a pointer to the first node of a linked list, you are...

  • C++ Time the sequential search and the binary search methods several times each for randomly generated...

    C++ Time the sequential search and the binary search methods several times each for randomly generated values, then record the results in a table. Do not time individual searches, but groups of them. For example, time 100 searches together or 1,000 searches together. Compare the running times of these two search methods that are obtained during the experiment. Regarding the efficiency of both search methods, what conclusion can be reached from this experiment? Both the table and your conclusions should...

  • What are the main characteristics of a binary search tree? In your opinion, what advantages does...

    What are the main characteristics of a binary search tree? In your opinion, what advantages does a binary search tree have over a linked list or an array? Assuming you want to create a binary search tree of integers, draw the resulting tree if the integers input were as follows : 25 43 12 20 5 50 30

  • Language = c++ Write a program to find the number of comparisons using the binary search...

    Language = c++ Write a program to find the number of comparisons using the binary search and sequential search algorithms as follows: o Suppose list is an array of 1000 elements. o Use a random number generator to fill the list. o Use the function insertOrd to initially insert all the elements in the list. o You may use the following function to fill the list: void fill(orderedArrayListType& list) {       int seed = 47; int multiplier = 2743;                                ...

  • Which of the following is the main requirement for a binary search algorithm? a. The list...

    Which of the following is the main requirement for a binary search algorithm? a. The list must have an odd number of elements. b. The list must be sorted in ascending order. C. The list must be sorted in descending order. d. The list must have an even number of elements.

  • Suppose that, even unrealistically, we are to search a list of 700 million items using Binary...

    Suppose that, even unrealistically, we are to search a list of 700 million items using Binary Search, Recursive (Algorithm 2.1). What is the maximum number of comparisons that this algorithm must perform before finding a given item or concluding that it is not in the list “Suppose that, in a divide-and-conquer algorithm, we always divide an instance of size n of a problem into n subinstances of size n/3, and the dividing and combining steps take linear time. Write a...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT