Katana VentraIP

Search algorithm

In computer science, a search algorithm is an algorithm designed to solve a search problem. Search algorithms work to retrieve information stored within particular data structure, or calculated in the search space of a problem domain, with either discrete or continuous values.

Although search engines use search algorithms, they belong to the study of information retrieval, not algorithmics.


The appropriate search algorithm to use often depends on the data structure being searched, and may also include prior knowledge about the data. Search algorithms can be made faster or more efficient by specially constructed database structures, such as search trees, hash maps, and database indexes.[1][2]


Search algorithms can be classified based on their mechanism of searching into three types of algorithms: linear, binary, and hashing. Linear search algorithms check every record for the one associated with a target key in a linear fashion.[3] Binary, or half-interval, searches repeatedly target the center of the search structure and divide the search space in half. Comparison search algorithms improve on linear searching by successively eliminating records based on comparisons of the keys until the target record is found, and can be applied on data structures with a defined order.[4] Digital search algorithms work based on the properties of digits in data structures by using numerical keys.[5] Finally, hashing directly maps keys to records based on a hash function.[6]


Algorithms are often evaluated by their computational complexity, or maximum theoretical run time. Binary search functions, for example, have a maximum complexity of O(log n), or logarithmic time. In simple terms, the maximum number of operations needed to find the search target is a logarithmic function of the size of the search space.

vehicle routing problem

map coloring problem

In and especially combinatorial game theory, choosing the best move to make next (such as with the minmax algorithm)

game theory

Finding a combination or password from the whole set of possibilities

an integer (an important problem in cryptography)

Factoring

Search engine optimization (SEO) and content optimization for web crawlers

Optimizing an industrial process, such as a , by changing the parameters of the process (like temperature, pressure, and pH)

chemical reaction

Retrieving a record from a

database

Finding the maximum or minimum value in a or array

list

Checking to see if a given value is present in a set of values

Specific applications of search algorithms include:

 – Process of reasoning backwards in sequence

Backward induction

 – Special type of computer memory used in certain very-high-speed searching applications hardware

Content-addressable memory

 – Process that drives self-organization within complex adaptive systems

Dual-phase evolution

 – Computational search problem

Linear search problem

 – Average solution cost is the same with any method

No free lunch in search and optimization

 – Information filtering system to predict users' preferences, also use statistical methods to rank results in very large data sets

Recommender system

 – System to help searching for information

Search engine (computing)

 – Two-person zero-sum game

Search game

 – Method for finding kth smallest value

Selection algorithm

 – Software for a class of mathematical problems

Solver

 – Algorithm that arranges lists in order, necessary for executing certain search algorithms

Sorting algorithm

 – Software system for finding relevant information on the Web

Web search engine

Categories:

(1998). Sorting and Searching. The Art of Computer Programming. Vol. 3 (2nd ed.). Reading, MA: Addison-Wesley Professional.

Knuth, Donald