answersLogoWhite

0


Best Answer

half means 1/2 from the whole (previous), which means 2 of 1/2, and 2 derived into binary. Ha, Binary Search is the term.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

The answer is Binary Search

The Array needs to be sorted (Descending or Assigning) by the search key.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What search algorithm locates an item in an array by repeatedly dividing the array in half?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is search algorithm?

The linear search algorithm is a special case of the brute force search.


Which search algorithm requires that the arrays contents be sorted?

Binary Search Algorithm


An algorithm to find whether a directed graph is connected or not?

You can use a The Depth-First Search algorithm.


what is the google algorithm and specifications?

The Google algorithm is a set of rules that the search engine uses to determine which websites are ranked higher than others in its search results. The specifications for this algorithm are secret, and changes to it happen frequently. As a result, there is no way to know exactly how any given search will be ranked.


How do you search a particular element from the vector?

To search a particular element from the vector, use the find() algorithm. If the vector is sorted, you can use the binary_search() algorithm to improve efficiency. Both algorithms can be found in the <algorithm> header in the C++ standard library.


What is linear searching?

The linear search algorithm is a special case of the brute force search.


Examples of algorithms?

bisection algorithm (see link)Euclid's algorithm (see link)Fibonacci search (see link)


What is the term used for the value that is searched for in a search algorithm?

searchValue


Why is midpoint subdivision algorithm preferred over Cohen-Sutherland algorithm?

The cohen sutherland algo requires calculation of intersection of the line with the window edge.This direct calculation is avoided by performing a binary search for the intersection by always dividing the line at its midpoint.To implement it a parallel architecture is used and hardware division addition by 2 is very fast


Give you the algorithm of creating a new binary search tree using c?

i want to know how to give the algorithm password in a computer ?


How is a company search performed?

A company search is preformed by a method named SEO. It filters and locates the specific company for you based on your region and the most popular companies in your area.


How can you convert a simple algorithm to recursive algorithm?

Linear search(a,item) n=length(a) for i=1 to n do if(a[i]==item) then return i end for return -1